[Swift-commit] r3276 - trunk/libexec

noreply at svn.ci.uchicago.edu noreply at svn.ci.uchicago.edu
Thu Apr 8 21:44:06 CDT 2010


Author: hategan
Date: 2010-04-08 21:44:05 -0500 (Thu, 08 Apr 2010)
New Revision: 3276

Modified:
   trunk/libexec/_swiftwrap
Log:
fixed mv -v issues on busybox

Modified: trunk/libexec/_swiftwrap
===================================================================
--- trunk/libexec/_swiftwrap	2010-04-07 21:03:49 UTC (rev 3275)
+++ trunk/libexec/_swiftwrap	2010-04-09 02:44:05 UTC (rev 3276)
@@ -1,3 +1,4 @@
+#!/bin/bash
 # this script must be invoked inside of bash, not plain sh
 # note that this script modifies $IFS
 
@@ -533,7 +534,7 @@
 logstate "MOVING_OUTPUTS $OUTF"
 for O in $OUTF ; do
 	if ! contains SKIPPED_OUTPUT $O ; then
-		mv -v "$DIR/$O" "$WFDIR/shared/$O" 2>&1 >&	"$INFO"
+		mv "$DIR/$O" "$WFDIR/shared/$O" 2>&1 >&	"$INFO"
 		checkError 254 "Failed to move output file $O to shared directory"
 	fi
 done




More information about the Swift-commit mailing list