blob: 349ca9edabc288a88a22975f8c2c81bc280c04bb (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# $FreeBSD$
FILE="/var/games/sokoban"
if [ "$2" = "POST-DEINSTALL" -a -f "$FILE" ]; then
echo "===> If you are completely uninstalling sokoban you may also want to remove the scores files: $FILE"
fi
|