File: postrm

package info (click to toggle)
maelstrom 3.0.7-4
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 4,948 kB
  • sloc: cpp: 10,947; sh: 3,406; ansic: 2,781; makefile: 175
file content (10 lines) | stat: -rw-r--r-- 154 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e

SCOREDIR=/var/games
if test "$1" = purge; then
    echo "Purging high-score file."
    rm -f $SCOREDIR/Maelstrom-Scores
fi

#DEBHELPER#