diff options
author | fschildt <florian.schildt@protonmail.com> | 2025-07-21 16:07:28 +0200 |
---|---|---|
committer | fschildt <florian.schildt@protonmail.com> | 2025-07-21 16:07:28 +0200 |
commit | b46a0d9369fbaa1938f0968ab216bc2d564a9c37 (patch) | |
tree | c28b75187d01be9642af56a54a6101f51b25e4a7 /launch.sh |
Diffstat (limited to 'launch.sh')
-rwxr-xr-x | launch.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/launch.sh b/launch.sh new file mode 100755 index 0000000..43a540c --- /dev/null +++ b/launch.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +cd runtree + +if [[ "$1" == "debug" ]] then + gdb ./fsarcade +else + ./fsarcade +fi + |