blob: 19a5f69e003c154ec317fd9efd3586ac5637ccfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env bash
arch=$(uname -m)
file=`basename "$0"`
if [ "$file" == 'openarena' ]; then
file='openarena'
else
file='oa_ded'
fi
cd '/usr/lib/openarena'
# Comment by syrjala
# openarena-runner.sh should pass on the command line options. I just banged my
# head against the wall for a while trying to figure out why my command line
# options didn't do anything.
# So, here it is
"./${file}.${arch}" $@
|