mirror of
https://github.com/skoelle/marcer-gamedvd-launcher.git
synced 2026-09-17 18:50:25 +00:00
move all files
This commit is contained in:
Executable
+13
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Starts MarcerGameDvdLauncher (script is in scripts/, code in src/)
|
||||
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
||||
EXE_PATH="$SCRIPT_DIR/../src/MarcerGameDvdLauncher/bin/Release/net10.0/MarcerGameDvdLauncher"
|
||||
|
||||
if [ ! -f "$EXE_PATH" ]; then
|
||||
echo "[ERROR] Application not built. Please run build.sh first."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cd "$SCRIPT_DIR/../src/MarcerGameDvdLauncher/bin/Release/net10.0"
|
||||
./MarcerGameDvdLauncher
|
||||
Reference in New Issue
Block a user