From 9a3a4bed6f7db489a551b0fc509372e62a8b84a9 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Sun, 25 Nov 2018 16:26:15 -0500 Subject: [PATCH] fix [[ not found --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 162c23f..7db882b 100755 --- a/install.sh +++ b/install.sh @@ -4,7 +4,7 @@ ################################################################################ # check if root -if [[ $EUID -ne 0 ]]; then +if [ $EUID -ne 0 ]; then echo -e "This script must be run as root" exit 1 fi