mirror of https://github.com/odrling/Aegisub
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:
parent
12ba64ffb2
commit
4459cbf3e8
|
@ -4,12 +4,14 @@ PKG_DIR=${1}.app
|
||||||
SKEL_DIR="packages/osx_bundle"
|
SKEL_DIR="packages/osx_bundle"
|
||||||
|
|
||||||
if ! test -d packages/osx_bundle; then
|
if ! test -d packages/osx_bundle; then
|
||||||
|
echo
|
||||||
echo "Make sure you're in the toplevel source directory"
|
echo "Make sure you're in the toplevel source directory"
|
||||||
exit 1;
|
exit 1;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Removing ${PKG_DIR}"
|
if test -d ${PKG_DIR}; then
|
||||||
rm -rf ${PKG_DIR}
|
echo "**** USING OLD ${PKG_DIR} ****"
|
||||||
|
fi
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "---- Directory Structure ----"
|
echo "---- Directory Structure ----"
|
||||||
|
|
Loading…
Reference in New Issue