refactor: Use dummy variable name for unused value
As recommended by ShellCheck <https://github.com/koalaman/shellcheck/wiki/SC2034>.
This commit is contained in:
parent
b9e05544c9
commit
b0a9abedea
1 changed files with 1 additions and 1 deletions
|
@ -652,7 +652,7 @@ in {
|
|||
deps = [ "users" ];
|
||||
text = ''
|
||||
users=()
|
||||
while IFS=: read -r user hash tail; do
|
||||
while IFS=: read -r user hash _; do
|
||||
if [[ "$hash" = "$"* && ! "$hash" =~ ^\''$${cryptSchemeIdPatternGroup}\$ ]]; then
|
||||
users+=("$user")
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue