blob: c6ad086d03710e0f180ddb353a7870468bc85666 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
DEMO='/usr/share/th06-demo'
if ! test -d "$DEMO"; then
echo 'You need to install the th06-demo-data from AUR to use this wrapper.'
exit 1
fi
exec pytouhou -p "$DEMO" "$@"
|