[Swift-commit] r7452 - branches/release-0.95/bin

wilde at ci.uchicago.edu wilde at ci.uchicago.edu
Wed Dec 25 21:58:50 CST 2013


Author: wilde
Date: 2013-12-25 21:58:49 -0600 (Wed, 25 Dec 2013)
New Revision: 7452

Modified:
   branches/release-0.95/bin/swiftrun
Log:
Only look at runNNN directories where NNN is numeric, when determining the next run directory in swiftrun

Modified: branches/release-0.95/bin/swiftrun
===================================================================
--- branches/release-0.95/bin/swiftrun	2013-12-23 22:44:51 UTC (rev 7451)
+++ branches/release-0.95/bin/swiftrun	2013-12-26 03:58:49 UTC (rev 7452)
@@ -364,7 +364,7 @@
 
 # Create/increment run directory
 my $run_number = 0;
-my @run_directories = <run???>;
+my @run_directories = <run[0-9][0-9][0-9]>;
 
 if(@run_directories) {
    $run_number = $run_directories[-1];




More information about the Swift-commit mailing list