slackbuilds_ponce/games/pentagram/pentagram.sh

14 lines
326 B
Bash
Raw Normal View History

#!/bin/sh
# Wrapper script for pentagram, creates initial ~/.pentagram/pentagram.ini
# file, which pentagram won't create for itself.
set -e
if [ ! -e ~/.pentagram/pentagram.ini ]; then
mkdir -p ~/.pentagram
cat /usr/share/pentagram/pentagram.ini.default > ~/.pentagram/pentagram.ini
fi
exec /usr/bin/pentagram-bin "$@"