From 64311b279dd4307f95fa58b126e3129e7e66c6e8 Mon Sep 17 00:00:00 2001 From: David Adam Date: Thu, 16 Sep 2021 21:01:33 +0800 Subject: [PATCH] Debian packaging: drop blank postrm script --- debian/fish.postrm | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 debian/fish.postrm diff --git a/debian/fish.postrm b/debian/fish.postrm deleted file mode 100644 index b48530b7d..000000000 --- a/debian/fish.postrm +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh -# postrm script for fish -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `remove' -# * `purge' -# * `upgrade' -# * `failed-upgrade' -# * `abort-install' -# * `abort-install' -# * `abort-upgrade' -# * `disappear' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "postrm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0