File: python3-migrate.prerm

package info (click to toggle)
migrate 0.13.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 968 kB
  • sloc: python: 5,854; makefile: 95; sh: 91
file content (12 lines) | stat: -rwxr-xr-x 221 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "$1" = "remove" ] ; then
	update-alternatives --remove migrate /usr/bin/python2-migrate
	update-alternatives --remove migrate-repository /usr/bin/python2-migrate-repository
fi

#DEBHELPER#

exit 0