mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
22931abc7c
and matches the default) and advise users to remove it otherwise. - Trim header
9 lines
214 B
Bash
9 lines
214 B
Bash
#!/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
|