1
0
forked from mirrors/0ad
Files
0ad/build/resources/0ad.sh
T
leper 64bfa089af Add mod selection mod.
Includes some contributions by rada and sanderd17.

This was SVN commit r15677.
2014-08-25 16:02:54 +00:00

10 lines
189 B
Bash

#!/bin/sh
pyrogenesis=$(which pyrogenesis 2> /dev/null)
if [ -x "$pyrogenesis" ] ; then
"$pyrogenesis" -mod=public "$@"
else
echo "Error: pyrogenesis not found in ($PATH)"
exit 1
fi