New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 81245


Ignore:
Timestamp:
07/27/11 22:46:49 (4 years ago)
Author:
jmr@…
Message:

mpab: handle 'all' in gather_archives.sh

File:
1 edited

Legend:

Unmodified
Added
Removed
  • contrib/mpab/gather_archives.sh

    r80464 r81245  
    1515 
    1616mkdir -p $ULPATH 
    17 for portname in `cat $PORTLISTFILE`; do 
     17if [[ `head -n1 $PORTLISTFILE` == "all" ]]; then 
     18    ports=`${PREFIX}/bin/port -q echo all | tr '\n' ' '` 
     19else 
     20    ports=`cat $PORTLISTFILE` 
     21fi 
     22 
     23for portname in $ports; do 
    1824    if ls logs-*/success/${portname}.log > /dev/null 2>&1 ; then 
    1925        if ./mpexport/base/portmgr/jobs/port_binary_distributable.tcl ${portname}; then 
Note: See TracChangeset for help on using the changeset viewer.