12 lines
221 B
Bash
12 lines
221 B
Bash
#! /bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = remove ]; then
|
|
if update-alternatives --list gnome-text-editor >/dev/null 2>&1; then
|
|
update-alternatives --remove gnome-text-editor /usr/bin/gedit
|
|
fi
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|