Modify the build to also put a copy of the disk image on my webserver so it is easy to get onto my real GS for testing.

This commit is contained in:
Jeremy Rand 2021-01-05 22:43:00 -05:00
parent b8ab0d80aa
commit e2e4da9e37
2 changed files with 9 additions and 2 deletions

View File

@ -115,6 +115,14 @@ then
cleanupAndExit
fi
# This is a special case for my personal build environment. If I can find my home directory
# and the Sites directory in it, then also put a copy of the build there also. This makes it
# available over http to my real GS so I can test it there also.
if [ -d /Users/jrand/Sites ]
then
cp "$TMPDISKIMAGE" /Users/jrand/Sites/BuGS.2mg
fi
rm -f "$TMPDISKIMAGE"
rmdir "$MOUNTDIR"
exit 0

View File

@ -28,8 +28,7 @@ then
DISKIMAGE="$PWD/$DISKIMAGE"
fi
# This magic ensure that clicking stop in Xcode results in the emulator terminating.
# This magic ensures that clicking stop in Xcode results in the emulator terminating.
if true
then
cd make