[Swift-commit] r7458 - branches/release-0.95/bin
davidk at ci.uchicago.edu
davidk at ci.uchicago.edu
Thu Jan 2 15:30:54 CST 2014
Author: davidk
Date: 2014-01-02 15:30:54 -0600 (Thu, 02 Jan 2014)
New Revision: 7458
Modified:
branches/release-0.95/bin/swiftrun
Log:
Fix for walltimes
Modified: branches/release-0.95/bin/swiftrun
===================================================================
--- branches/release-0.95/bin/swiftrun 2014-01-02 19:09:50 UTC (rev 7457)
+++ branches/release-0.95/bin/swiftrun 2014-01-02 21:30:54 UTC (rev 7458)
@@ -166,11 +166,9 @@
elsif ( $property eq "taskdir" ) { return "<scratch>$value</scratch>\n"; }
elsif ( $property eq "filesystem" ) { return "<filesystem provider=\"" . $value . "\"/>\n"; }
- else {
- my ( $xmlnamespace, $xmlproperty ) = split(/\./, $site_aliases{ $propertyStart });
- if ( defined($xmlnamespace) && defined($xmlproperty)) {
- return "<profile namespace=\"" . $xmlnamespace . "\" key=\"" . $xmlproperty . "\">" . $value . "</profile>\n";
- }
+ my ( $xmlnamespace, $xmlproperty ) = split(/\./, $site_aliases{ $propertyStart });
+ if ( defined($xmlnamespace) && defined($xmlproperty)) {
+ return "<profile namespace=\"" . $xmlnamespace . "\" key=\"" . $xmlproperty . "\">" . $value . "</profile>\n";
}
}
More information about the Swift-commit
mailing list