summaryrefslogtreecommitdiffstats
path: root/debian/coreutils.postrm
blob: 6f475ce450db6d1eeb65f8dff651ef8a38788bf6 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
set -e

if [ "$1" = 'remove' -a -L "$DPKG_ROOT/usr/bin/touch" ]; then
  rm "$DPKG_ROOT/usr/bin/touch"
fi

#DEBHELPER#