#! /bin/sh

# change to the install directory
cd /usr/share/games/civil/src

# execute the main binary
bin=civil-editor

for file in $bin.pyo $bin.pyc $bin.py; do
    if [ -r $file ]; then
	exec python $file $@
	break
    fi
done

exit 126
