trivial fix master
authorGreg Price <price@mit.edu>
Fri, 27 Feb 2009 07:56:57 +0000 (02:56 -0500)
committerGreg Price <price@mit.edu>
Fri, 27 Feb 2009 07:56:57 +0000 (02:56 -0500)
svn path=/trunk/scripts/invirt-test-build/; revision=2202

invirt-test-install

index bb67f02..f6f2c92 100755 (executable)
@@ -3,11 +3,11 @@ set -e
 name=`ssh root@xvm-dev "ls $1*.deb"`
 shift;
 scp root@xvm-dev:~/$name .
-ssh root@xvm-dev mv "$name" "$name_backup"
+ssh root@xvm-dev mv "$name" "${name}_backup"
 for i in "$@"; do
     scp "$name" root@$i:
     ssh root@$i -t dpkg -i "$name"
     ssh root@$i rm $name
 done
 rm $name
-ssh root@xvm-dev mv "$name_backup" "$name"
+ssh root@xvm-dev mv "${name}_backup" "$name"