From 1e8e84b286acf147196ac95a515564324a0a9ae9 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 16 Oct 2022 02:00:01 +0200 Subject: guix-install.sh: Treat all uncaught errors as fatal. * etc/guix-install.sh: Set -o pipefail. --- etc/guix-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'etc') diff --git a/etc/guix-install.sh b/etc/guix-install.sh index 353fc68aab..43dea3b605 100755 --- a/etc/guix-install.sh +++ b/etc/guix-install.sh @@ -33,7 +33,7 @@ then exec bash "$0" "$@" fi -set -e +set -eo pipefail [ "$UID" -eq 0 ] || { echo "This script must be run as root."; exit 1; } -- cgit v1.2.3