From 8c6838e85c242783e70dfadadf989fbf3c86a312 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Fri, 8 Nov 2019 10:17:30 +0100 Subject: Linux: during uninstall, output error message to STDERR instead of STDOUT for better compatibility with package managers --- src/Build/Packaging/debian-control/prerm | 2 +- src/Build/Packaging/rpm-control/prerm.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Build') diff --git a/src/Build/Packaging/debian-control/prerm b/src/Build/Packaging/debian-control/prerm index e9deafc3..d2e3894e 100644 --- a/src/Build/Packaging/debian-control/prerm +++ b/src/Build/Packaging/debian-control/prerm @@ -2,7 +2,7 @@ V="$(mount | grep veracrypt_aux_mnt)" if [ ! -z "$V" ] then - echo "Error: All VeraCrypt volumes must be dismounted first." + echo "Error: All VeraCrypt volumes must be dismounted first." >&2 exit 1 else exit 0 diff --git a/src/Build/Packaging/rpm-control/prerm.sh b/src/Build/Packaging/rpm-control/prerm.sh index e9deafc3..d2e3894e 100644 --- a/src/Build/Packaging/rpm-control/prerm.sh +++ b/src/Build/Packaging/rpm-control/prerm.sh @@ -2,7 +2,7 @@ V="$(mount | grep veracrypt_aux_mnt)" if [ ! -z "$V" ] then - echo "Error: All VeraCrypt volumes must be dismounted first." + echo "Error: All VeraCrypt volumes must be dismounted first." >&2 exit 1 else exit 0 -- cgit v1.2.3