Fix bug where require_group didn't recognize group members

This commit is contained in:
0x1eef 2023-05-27 16:22:10 -03:00
parent 861cdc7dd9
commit 1085640b77

View file

@ -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