mirror of https://github.com/odrling/Aegisub
Delete osx-run.sh
wxWidgets now supports running from outside application bundles, so it's no longer needed.
This commit is contained in:
parent
421d5ca52e
commit
04efe2edfb
|
@ -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
|
|
||||||
|
|
Loading…
Reference in New Issue