mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00

* Rename run_release scripts to run_OS (#241) * Update README with new script names (#241) * Fix run_windows infinite loop * Make debug_linux more verbose. * Make windows script errors match linux * Automatically set working directory (#252) * Remote quotes from echo commands in run_windows * Replace zig run with zig build run * Replace spaces with tabs in run scripts. * Make 'Building Cubyz' message more accurate * Have run scripts check the machine architecture. * Add failsafe for unrecognized architecture; erase scratch work in debug_windows * Replace more spaces with tabs in debug_linux * Linux run script: don't pause if debug build or NO_PAUSE * Windows run script: do not pause in debug builds or if NO_PAUSE * Escape a paren * Fix x64 typo * Delete logs about failing to build * Use `call` to call the batch script on windows Without `call` windows won't execute the lines after calling the batch script. --------- Co-authored-by: IntegratedQuantum <43880493+IntegratedQuantum@users.noreply.github.com>
11 lines
196 B
Bash
Executable File
11 lines
196 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
./debug_linux.sh -Doptimize=ReleaseFast "$@"
|
|
|
|
if [ ! $NO_PAUSE ]; then
|
|
echo "Press enter key to continue. (Or export NO_PAUSE=1 to skip this prompt.)"
|
|
read
|
|
fi
|