[pkg-fso-commits] [SCM] Various non-packaged files branch, master, updated. d18821f6378eac9a00723a180eda5145a3ccdc8c

Steffen Moeller moeller at debian.org
Sat Feb 28 12:06:44 UTC 2009


The following commit has been merged in the master branch:
commit 2d001ec988303aa5cfa4e785950d53e471453a35
Author: Steffen Moeller <moeller at debian.org>
Date:   Sat Feb 28 12:56:28 2009 +0100

    Some academic hardening ( ; ) -> ( && )

diff --git a/install.sh b/install.sh
index 95f3c13..66f1322 100755
--- a/install.sh
+++ b/install.sh
@@ -393,7 +393,7 @@ action_testing () {
 		echo "W: tar does not support gzip archives"
 		echo "Downloading tar package"
 		wget $TAR_PACKAGE -O /tmp/tar.deb
-		( cd /tmp; ar -x tar.deb data.tar.gz )
+		( cd /tmp && ar -x tar.deb data.tar.gz )
 		mkdir -p /usr/local
 		gunzip -c /tmp/data.tar.gz | tar -x -C /usr/local/
 		rm -f /tmp/data.tar.gz
@@ -407,7 +407,7 @@ action_testing () {
 			# and then try to install the Debian dosfstools
 			echo "Downloading dosfstools package"
 			wget $DOSFSTOOLS_PACKAGE -O /tmp/dosfstools.deb
-			( cd /tmp; ar -x dosfstools.deb data.tar.gz )
+			( cd /tmp && ar -x dosfstools.deb data.tar.gz )
 			tar -xz -C / -f /tmp/data.tar.gz
 			rm -f /tmp/data.tar.gz
 			rm -f /tmp/dosfstools.deb
@@ -632,7 +632,7 @@ action_debian () {
 
 	echo " * Downloading cdebootstrap package"
 	wget $CDEBOOTSTRAP_PACKAGE -O /tmp/cdebootstrap.deb
-	( cd /tmp; ar -x cdebootstrap.deb data.tar.gz )
+	( cd /tmp && ar -x cdebootstrap.deb data.tar.gz )
 	tar -xz -C / -f /tmp/data.tar.gz
 	rm -f /tmp/data.tar.gz
 	rm -f /tmp/cdebootstrap.deb

-- 
Various non-packaged files



More information about the pkg-fso-commits mailing list