Skip to content

Commit

Permalink
fix: bash array iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
ledif authored Jan 11, 2025
1 parent 93dda10 commit ff6b22e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system_files/shared/usr/libexec/aurora-groups.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ append_group() {
append_group plugdev

wheelarray=($(getent group wheel | cut -d ":" -f 4 | tr ',' '\n'))
for user in $wheelarray
for user in "${wheelarray[@]}"
do
usermod -aG plugdev $user
done
Expand Down

0 comments on commit ff6b22e

Please sign in to comment.