File: postrm

package info (click to toggle)
gnugo 3.8-11
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 17,488 kB
  • sloc: ansic: 56,447; perl: 3,771; lisp: 2,804; sh: 722; makefile: 706; python: 682; awk: 113; sed: 22
file content (10 lines) | stat: -rw-r--r-- 100 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e

if [ "$1" = remove ]
then
	rm -f /usr/share/emacs/site-lisp/gnugo.elc
fi

exit 0