From 9ad3abf35979e50191a265d734d7316dbde491d1 Mon Sep 17 00:00:00 2001 From: Richard Macklin Date: Wed, 3 Jul 2024 20:20:48 -0700 Subject: [PATCH] Restore `set -e` line in `install.sh` --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 9a2a499..4ee2111 100644 --- a/install.sh +++ b/install.sh @@ -1,5 +1,5 @@ # Exit immediately if a command exits with a non-zero status -# set -e +set -e # Desktop software and tweaks will only be installed if we're running Gnome RUNNING_GNOME=$([[ "$XDG_CURRENT_DESKTOP" == *"GNOME"* ]] && echo true || echo false)