diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2016-05-08 17:34:36 +0200 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2016-05-08 17:59:28 +0200 |
commit | f368b96e77c79339b9ef4208ab52e1a240bdcf27 (patch) | |
tree | 0c75abb2d4bf3cf1ca46a8be31c0f4f145914ee1 | |
parent | 8068825286ae95c8b86ca32e30da291f605bc50b (diff) | |
download | zsh-f368b96e77c79339b9ef4208ab52e1a240bdcf27.tar.gz zsh-f368b96e77c79339b9ef4208ab52e1a240bdcf27.zip |
Also remove hardcoded /usr/bin/zsh symlink in postrm again. (Closes: #823730)
-rw-r--r-- | debian/zsh.postrm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/debian/zsh.postrm b/debian/zsh.postrm index a8921f6d6..82649c6ee 100644 --- a/debian/zsh.postrm +++ b/debian/zsh.postrm @@ -9,4 +9,9 @@ case "$1" in ;; esac +# Remove hardcoded symlink again +if [ -L /usr/bin/zsh ]; then + rm -f /usr/bin/zsh +fi + #DEBHELPER# |