Delete osx-run.sh

wxWidgets now supports running from outside application bundles, so it's
no longer needed.
This commit is contained in:
Thomas Goyne 2014-06-05 06:59:25 -07:00
parent 421d5ca52e
commit 04efe2edfb
1 changed files with 0 additions and 27 deletions

View File

@ -1,27 +0,0 @@
#!/bin/sh
set -e
case "$1" in
"build")
cd ..
make
make osx-bundle
cd src
open ../*.app
;;
"build-gdb")
cd ..
make
make osx-bundle
cd src
gdb ../*.app/Contents/MacOS/aegisub
;;
"gdb")
gdb ../*.app/Contents/MacOS/aegisub
;;
*)
open ../*.app
;;
esac