summaryrefslogtreecommitdiff
path: root/debian/zsh-beta.postrm
blob: 95dbe4f478533ac3596a3fd78e76dc1010222544 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

case "$1" in
    (purge)
        rmdir -p /usr/local/share/zsh-beta/site-functions || true
        ;;
    (remove)
        remove-shell /bin/zsh-beta
        ;;
esac

#DEBHELPER#