File: python-restructuredtext-lint.postinst

package info (click to toggle)
python-restructuredtext-lint 0.12.2-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 204 kB
  • ctags: 44
  • sloc: python: 219; sh: 40; makefile: 33
file content (12 lines) | stat: -rw-r--r-- 291 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "$1" = "configure" ] ; then
	update-alternatives --install /usr/bin/restructuredtext-lint restructuredtext-lint /usr/bin/python2-restructuredtext-lint 300
	update-alternatives --install /usr/bin/rst-lint rst-lint /usr/bin/python2-rst-lint 300
fi

#DEBHELPER#

exit 0