From 6368e5bb05f4537fba8c012f59b583d11247d56b Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 9 Nov 2021 08:48:57 -0800 Subject: [PATCH] Fixed chmod position --- dotenv.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dotenv.sh b/dotenv.sh index e473e77..26765cf 100644 --- a/dotenv.sh +++ b/dotenv.sh @@ -1,14 +1,14 @@ #!/bin/bash -# Grant SH execute -chmod +x ./**/*.sh - # Disable running as root. if [[ "$EUID" -eq 0 ]]; then echo "Please do not run as root" exit 1 fi +# Grant SH execute +chmod +x ./**/*.sh + # Arch Linux Setup if [ -f "/etc/arch-release" ]; then ./scripts/install-arch.sh