File: sphinx-common.prerm.in

package info (click to toggle)
sphinx 1.6.5-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 14,936 kB
  • sloc: python: 50,528; perl: 387; makefile: 296; sh: 80; xml: 16; ansic: 1
file content (13 lines) | stat: -rw-r--r-- 156 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -e

scripts='@SCRIPTS@'
if [ "$1" = remove ] || [ "$1" = deconfigure ]
then
	cd /usr/bin/
	rm -f $scripts
	cd /
fi
unset scripts

#DEBHELPER#