Merge pull request #186 from rmacklin/uncomment-set-e

Restore `set -e` line in `install.sh`
This commit is contained in:
David Heinemeier Hansson
2024-07-04 08:44:52 +02:00
committed by GitHub

View File

@@ -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)