refactor: Use dummy variable name for unused value

As recommended by ShellCheck
<https://github.com/koalaman/shellcheck/wiki/SC2034>.
This commit is contained in:
Victor Engmark 2023-06-08 15:05:59 +12:00
parent b9e05544c9
commit b0a9abedea

View file

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