Add whitespace in conditional (fix has_portzap_access)

This commit is contained in:
0x1eef 2023-01-22 10:57:59 -03:00
parent 9f52040f86
commit e8c78f4f0e

View file

@ -32,7 +32,7 @@ has_portzap_access() {
groups=$(id -Gn) groups=$(id -Gn)
in_group=1 in_group=1
for g in $groups; do for g in $groups; do
if [ $g="_portzap" ]; if [ $g = "_portzap" ];
then then
in_group=0 in_group=0
fi fi