[Pkg-nethack-devel] nethack/debian nethack-common.postrm,1.1,1.2

Ben Gertzfield che@quantz.debian.org
Mon, 13 Oct 2003 18:55:12 +0000


Update of /cvsroot/pkg-nethack/nethack/debian
In directory quantz:/tmp/cvs-serv20176

Modified Files:
	nethack-common.postrm 
Log Message:
Move DEBHELPER above savegame purge output (was reading from stdin)

Index: nethack-common.postrm
===================================================================
RCS file: /cvsroot/pkg-nethack/nethack/debian/nethack-common.postrm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- nethack-common.postrm	7 Oct 2003 23:35:08 -0000	1.1
+++ nethack-common.postrm	13 Oct 2003 18:55:10 -0000	1.2
@@ -6,15 +6,20 @@
 # Copyright 1997 Ben Gertzfield. This script is released under the
 # GNU General Public License, version 2 or later.
 
+# Updated 13 October 2003 to move the debhelper above the save-files
+# purge (seems to be reading from stdin, seeing the "Purging" echo
+# as a command)
+
 # Updated 18 August 1998 to rm -rf the score/save directory on a purge,
 # added debhelper comments
 
 set -e
 
+#DEBHELPER#
+
 if [ "$1" = "purge" ]; then
     echo -n "Purging high-scores and save-files for Nethack... "
     rm -rf /var/games/nethack/
     echo "done."
 fi
 
-#DEBHELPER#