Fix typo
This commit is contained in:
parent
4d38c1b466
commit
4dc9fac23d
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ require_deps() {
|
||||||
require_group() {
|
require_group() {
|
||||||
group=$1
|
group=$1
|
||||||
cmd=$(id -Gn | tr ' ' '\n' | grep ^${group}$)
|
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."
|
echo "You must be a member of the '$group' group to run this command."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue