summaryrefslogtreecommitdiff
path: root/veracrypt/debian/prerm
diff options
context:
space:
mode:
Diffstat (limited to 'veracrypt/debian/prerm')
-rw-r--r--veracrypt/debian/prerm2
1 files changed, 1 insertions, 1 deletions
diff --git a/veracrypt/debian/prerm b/veracrypt/debian/prerm
index baa2e73..887e78f 100644
--- a/veracrypt/debian/prerm
+++ b/veracrypt/debian/prerm
@@ -5,7 +5,7 @@ set -e
case "$1" in
remove|upgrade|deconfigure|failed-upgrade)
(mount | grep -q veracrypt_aux_mnt) &&
- echo "Error: all VeraCrypt volumes must be unmounted before upgrade." && exit 1
+ echo "Error: all VeraCrypt volumes must be unmounted before upgrade." >&2 && exit 1
exit 0
;;
bgstack15