[Swift-commit] r5619 - trunk/libexec

davidk at ci.uchicago.edu davidk at ci.uchicago.edu
Wed Feb 15 07:56:06 CST 2012


Author: davidk
Date: 2012-02-15 07:56:06 -0600 (Wed, 15 Feb 2012)
New Revision: 5619

Modified:
   trunk/libexec/_swiftwrap.staging
Log:
Fix an error in swiftwrap which causes the the script to incorrectly expect a HERE document and print an error


Modified: trunk/libexec/_swiftwrap.staging
===================================================================
--- trunk/libexec/_swiftwrap.staging	2012-02-15 13:34:46 UTC (rev 5618)
+++ trunk/libexec/_swiftwrap.staging	2012-02-15 13:56:06 UTC (rev 5619)
@@ -300,7 +300,7 @@
 	fi
 	"$EXEC" "${CMDARGS[@]}" 1>"$STDOUT" 2>"$STDERR" <"$STDIN"
 fi
-checkError $? "Application $EXEC failed with an exit code of $?" <<$STDERR
+checkError $? "Application $EXEC failed with an exit code of $?" <$STDERR
 
 logstate "EXECUTE_DONE"
 log "Job ran successfully"




More information about the Swift-commit mailing list