mirror of
https://github.com/ThomasDickey/mawk-snapshots.git
synced 2026-01-30 04:44:38 +00:00
13 lines
166 B
Bash
13 lines
166 B
Bash
#! /bin/sh
|
|
echo "** prerm script for mawk: $*"
|
|
|
|
set -e
|
|
|
|
if [ "x$1" != "xupgrade" ]; then
|
|
update-alternatives --remove mawk /usr/bin/mawk-cur
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|