mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-02 18:57:10 -04:00
11 lines
196 B
Bash
Executable File
11 lines
196 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
./debug_linux.sh -Doptimize=ReleaseSafe "$@"
|
|
|
|
if [ ! $NO_PAUSE ]; then
|
|
echo "Press enter key to continue. (Or export NO_PAUSE=1 to skip this prompt.)"
|
|
read
|
|
fi
|