mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-10 11:58:43 -04:00
14 lines
213 B
Bash
14 lines
213 B
Bash
#! /bin/bash
|
|
|
|
cd /usr/games/troubledwater
|
|
|
|
if [[ -x skwx_unx_x64 ]] ; then
|
|
exec ./skwx_unx_x64
|
|
elif [[ -x skwx_unx ]] ; then
|
|
exec ./skwx_unx
|
|
fi
|
|
|
|
echo "something bad happened! please re-emerge the game"
|
|
|
|
exit 1;
|