diff options
Diffstat (limited to 'debian/postrm')
-rw-r--r-- | debian/postrm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/postrm b/debian/postrm index 09b0aca..9778835 100644 --- a/debian/postrm +++ b/debian/postrm @@ -2,7 +2,7 @@ set -e -case "$1" in +case "${1}" in purge) rm -f /var/log/live* ;; @@ -12,7 +12,7 @@ case "$1" in ;; *) - echo "postrm called with unknown argument \`$1'" >&2 + echo "postrm called with unknown argument \`${1}'" >&2 exit 1 ;; esac |