Use consistent bash5 style for conditionals and quoting

This commit is contained in:
David Heinemeier Hansson
2026-02-21 10:18:47 +01:00
parent d2acf3b6ba
commit 7514ae7dcf
113 changed files with 289 additions and 287 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ set -e
# Overwrite all user configs with the Omarchy defaults.
if [ "$EUID" -eq 0 ]; then
if (( EUID == 0 )); then
echo "Error: This script should not be run as root"
exit 1
fi