From 4dc9fac23d77e6f07dc6fd18d0be4c06c6d5ddde Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Mon, 22 May 2023 01:00:45 -0300 Subject: [PATCH] Fix typo --- libexec/portzap/functions/requirements.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/portzap/functions/requirements.sh b/libexec/portzap/functions/requirements.sh index fdec46a..5c33a1a 100644 --- a/libexec/portzap/functions/requirements.sh +++ b/libexec/portzap/functions/requirements.sh @@ -12,7 +12,7 @@ require_deps() { require_group() { group=$1 cmd=$(id -Gn | tr ' ' '\n' | grep ^${group}$) - if [ $cmd != $group ]; then + if [ [$cmd != $group] ]; then echo "You must be a member of the '$group' group to run this command." exit 1 fi