[pypy-svn] r73123 - pypy/build/ubuntu/trunk

getxsick at codespeak.net getxsick at codespeak.net
Mon Mar 29 20:28:53 CEST 2010


Author: getxsick
Date: Mon Mar 29 20:28:52 2010
New Revision: 73123

Modified:
   pypy/build/ubuntu/trunk/autobuild.sh
Log:
fix redirection. &> doesn't work under sh

Modified: pypy/build/ubuntu/trunk/autobuild.sh
==============================================================================
--- pypy/build/ubuntu/trunk/autobuild.sh	(original)
+++ pypy/build/ubuntu/trunk/autobuild.sh	Mon Mar 29 20:28:52 2010
@@ -51,4 +51,4 @@
 echo "`date -R` : Packages built and sent successfully." | \
 mail -s "[pypy-autobuild] status" $DEBEMAIL
 echo "--- Finish the new build at `date -R`"
-) &>>$LOGFILE
+) >>$LOGFILE 2>&1



More information about the Pypy-commit mailing list