diff options
author | James Meyer <james.meyer@operamail.com> | 2009-02-22 22:37:04 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-02-22 22:37:04 (GMT) |
commit | 649486ddc069378a7702896528a6ccb0c3b08108 (patch) | |
tree | 1c80b3517e890737d614b5bee22f62a5bb9ef2ec | |
parent | 8afadf72a3bba61701d6a3ceb495fe130871dcfa (diff) | |
download | linhes_dev-649486ddc069378a7702896528a6ccb0c3b08108.zip |
Add additional support for creating a mv disk.
-rwxr-xr-x | build_tools/go.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/build_tools/go.sh b/build_tools/go.sh index 9cd9d1e..3166e23 100755 --- a/build_tools/go.sh +++ b/build_tools/go.sh @@ -27,6 +27,12 @@ fi echo "Running ./mklarch -f -p larch/profiles/$profile" time ./mklarch -f -c /tmp/$profile -p larch/profiles/$profile -echo "your $profile iso has been moved to /tmp/testcd-2.iso" -mv /home/larchroot/.larch/mylivecd.iso /tmp/testcd-2.iso +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 +fi date |