Instead of removing the old bundle, print a notice that

it is being re-used this makes development much easier.

Originally committed to SVN as r2565.
This commit is contained in:
Amar Takhar 2008-12-30 06:44:04 +00:00
parent 12ba64ffb2
commit 4459cbf3e8

View file

@ -4,12 +4,14 @@ PKG_DIR=${1}.app
SKEL_DIR="packages/osx_bundle"
if ! test -d packages/osx_bundle; then
echo
echo "Make sure you're in the toplevel source directory"
exit 1;
fi
echo "Removing ${PKG_DIR}"
rm -rf ${PKG_DIR}
if test -d ${PKG_DIR}; then
echo "**** USING OLD ${PKG_DIR} ****"
fi
echo
echo "---- Directory Structure ----"