updated on Thu Jan 26 12:02:26 UTC 2012
[aur-mirror.git] / tremulous-gpp / tremulous.launcher
blob8200bfb65e015da2941e38df848eae77f2f46677
1 #!/bin/sh
2 case `uname -m` in
3 i686) arch=x86 ;;
4 x86_64) arch=x86_64 ;;
5 *) exit 1 ;;
6 esac
8 cd "/opt/tremulous"
9 ./tremulous-gpp.$arch "$@"
10 exit $?