repo.or.cz
/
aur-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git]
/
tremulous-gpp
/
tremulous.launcher
blob
8200bfb65e015da2941e38df848eae77f2f46677
1
#!/bin/sh
2
case
`uname -m`
in
3
i686
)
arch
=
x86
;;
4
x86_64
)
arch
=
x86_64
;;
5
*)
exit
1
;;
6
esac
7
8
cd
"/opt/tremulous"
9
.
/
tremulous-gpp.
$arch
"$@"
10
exit
$?