1
1
forked from 0ad/0ad
0ad/build/resources/0ad.sh

10 lines
177 B
Bash

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