File: python3-restructuredtext-lint.postrm

package info (click to toggle)
python-restructuredtext-lint 1.3.2-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 208 kB
  • sloc: python: 309; sh: 25; makefile: 14
file content (12 lines) | stat: -rw-r--r-- 255 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "$1" = "remove" ] || [ "$1" = "disappear" ] ; then
	update-alternatives --remove restructuredtext-lint /usr/bin/python3-restructuredtext-lint
	update-alternatives --remove rst-lint /usr/bin/python3-rst-lint
fi

#DEBHELPER#

exit 0