mirror of
https://github.com/linuxserver/proot-apps.git
synced 2026-01-20 20:41:43 +08:00
15 lines
273 B
Bash
Executable File
15 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export PATH="$PATH:/usr/games"
|
|
|
|
# If no version passed open Phase1
|
|
if ! [[ "${1}" =~ ^(Phase1|Phase2)$ ]]; then
|
|
/usr/games/freedoom1 "$@"
|
|
else
|
|
if [[ "${1}" == "Phase1" ]]; then
|
|
/usr/games/freedoom1 ${@:2}
|
|
else
|
|
/usr/games/freedoom2 ${@:2}
|
|
fi
|
|
fi
|