[Vm-dev] [commit][3001] Fix some minor script slips

commits at squeakvm.org commits at squeakvm.org
Sat Jun 14 04:39:26 UTC 2014


Revision: 3001
Author:   eliot
Date:     2014-06-13 21:39:25 -0700 (Fri, 13 Jun 2014)
Log Message:
-----------
Fix some minor script slips

Modified Paths:
--------------
    branches/Cog/build.macos32x86/makeproductinstall
    branches/Cog/build.win32x86/makeproduct
    branches/Cog/scripts/uploadvms

Modified: branches/Cog/build.macos32x86/makeproductinstall
===================================================================
--- branches/Cog/build.macos32x86/makeproductinstall	2014-06-14 03:36:18 UTC (rev 3000)
+++ branches/Cog/build.macos32x86/makeproductinstall	2014-06-14 04:39:25 UTC (rev 3001)
@@ -10,7 +10,7 @@
 	d=$td/installer
 	PRODUCT=$1-$TAG.dmg
 	if test -d "$d"; then
-		(cd $d;make -n)
+		(cd $d;make)
 		test -f $d/$PRODUCT && mv $d/$PRODUCT ../products
 	else
 		echo no $d directory found

Modified: branches/Cog/build.win32x86/makeproduct
===================================================================
--- branches/Cog/build.win32x86/makeproduct	2014-06-14 03:36:18 UTC (rev 3000)
+++ branches/Cog/build.win32x86/makeproduct	2014-06-14 04:39:25 UTC (rev 3001)
@@ -1,6 +1,6 @@
 #!/bin/bash
 trap 'exit 2' HUP INT PIPE TERM
-for d in newspeak.cog.spur newspeak.cog.v3 squeak.cog.spur squeak.cog.v3 do
+for d in newspeak.cog.spur newspeak.cog.v3 squeak.cog.spur squeak.cog.v3; do
 	if test -d "$d"; then
 		(cd $d;./mvm)
 	else

Modified: branches/Cog/scripts/uploadvms
===================================================================
--- branches/Cog/scripts/uploadvms	2014-06-14 03:36:18 UTC (rev 3000)
+++ branches/Cog/scripts/uploadvms	2014-06-14 04:39:25 UTC (rev 3001)
@@ -6,7 +6,7 @@
 "
 cd `dirname $0`/../products
 VERBOSE=
-REV="`svnversion | sed 's/^.*://'`"
+REV="`svnversion .. | sed 's/^.*://'`"
 case $REV in
 *M)	echo -n "source tree is modified, are you sure you want to continue? "
 	read a



More information about the Vm-dev mailing list