Files
gimp/debian/libgimp2.0-dev.preinst
Jordi Mallach 858bc674b0 Use an explicit "set -e" in other maint scripts.
Use an explicit "set -e" in other maint scripts, instead of using the
shebang; this ensures the script exits on error even if called via sh.
2012-05-05 16:37:36 +02:00

13 lines
247 B
Bash

#!/bin/sh
set -e
ver=2.0
prio=50
if [ "$1" = "install" ] || [ "$1" = "upgrade" ]; then
update-alternatives --remove gimptool /usr/bin/gimptool-2.0
fi
#DEBHELPER#