mirror of
https://github.com/skoelle/marcer-gamedvd-launcher.git
synced 2026-09-17 18:50:25 +00:00
14 lines
421 B
Bash
Executable File
14 lines
421 B
Bash
Executable File
#!/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
|