Ignore:
Timestamp:
30/06/2011 23:02:49 (11 months ago)
Author:
chris
Message:

Reinstate the -f option to avoid failure if the files don't exist.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/trunk/infrastructure/makeparcels.pl.in

    r2974 r2976  
    381381for my $parcel (@parcels) 
    382382{ 
    383         print MAKE "\trm -r ", BoxPlatform::parcel_dir($parcel),    "\n"; 
    384         print MAKE "\trm    ", BoxPlatform::parcel_target($parcel), "\n"; 
     383        # need to use -f to avoid error if they don't exist (already cleaned) 
     384        print MAKE "\trm -rf ", BoxPlatform::parcel_dir($parcel),    "\n"; 
     385        print MAKE "\trm -f  ", BoxPlatform::parcel_target($parcel), "\n"; 
    385386} 
    386387 
Note: See TracChangeset for help on using the changeset viewer.