Organize files into categories. Likely still a bit of cleanup left to do.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
gameDir="${installPath}/christmas_dash_linux"
|
||||
gameExecutable="${gameDir}/game.bin"
|
||||
if [[ ! -d "$gameDir" ]]; then
|
||||
ui_msgbox "Linux Game Manager" "Linux Game Manager" "Christmas Dash is not installed."
|
||||
return 1
|
||||
fi
|
||||
if [[ ! -x "$gameExecutable" ]]; then
|
||||
ui_msgbox "Linux Game Manager" "Linux Game Manager" "Unable to find ${gameExecutable}."
|
||||
return 1
|
||||
fi
|
||||
pushd "${gameDir}"
|
||||
SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt \
|
||||
REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt \
|
||||
"${gameExecutable}"
|
||||
Reference in New Issue
Block a user