Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
9 lines
202 B
Bash
9 lines
202 B
Bash
#!/bin/sh
|
|
|
|
FILE="/var/games/nighthawk.scores"
|
|
[ "$2" != "POST-INSTALL" -o -f "$FILE" ] && exit 0
|
|
|
|
echo "===> Creating initial high score file $FILE"
|
|
touch $FILE
|
|
chown root:games $FILE
|
|
chmod 664 $FILE
|