diff options
author | James Meyer <james.meyer@operamail.com> | 2009-02-22 22:53:04 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-02-22 22:53:04 (GMT) |
commit | b4eea77c563fb06733e5560d496fe7ed861453b6 (patch) | |
tree | 0d7108a80e78bf58ab17d876117328069eb8e931 | |
parent | 0f0af0fc2108d01580dd5d383a5417bc25efddba (diff) | |
download | linhes_dev-b4eea77c563fb06733e5560d496fe7ed861453b6.zip |
swap the order of LinHES and MV
-rwxr-xr-x | build_tools/go.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/build_tools/go.sh b/build_tools/go.sh index 3166e23..b73c777 100755 --- a/build_tools/go.sh +++ b/build_tools/go.sh @@ -27,12 +27,13 @@ fi echo "Running ./mklarch -f -p larch/profiles/$profile" time ./mklarch -f -c /tmp/$profile -p larch/profiles/$profile -if [ $profile = MV-local ] + +if [ $profile = "MV-local" ] then - echo "your $profile iso has been moved to /tmp/testcd-2.iso" - mv /home/larchroot/.larch/mylivecd.iso /tmp/testcd-2.iso -else echo "your $profile iso has been moved to /tmp/MV-2.iso" mv /home/larchroot/.larch/mylivecd.iso /tmp/MV-2.iso +else + echo "your $profile iso has been moved to /tmp/testcd-2.iso" + mv /home/larchroot/.larch/mylivecd.iso /tmp/testcd-2.iso fi date |