Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

used_free_uidgids.sh: syntax fixup reported by juippis. #366

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
used_free_uidgids.sh: syntax fixup reported by juippis.
<juippis> bin/used_free_uidgids.sh: line 95: reasons{range_end+1]=RESERVED: command not found

Signed-off-by: Jaco Kroon <[email protected]>
  • Loading branch information
Jaco Kroon committed Feb 9, 2021
commit 8c50969916683c6c881df497785890dfb0133e8d
2 changes: 1 addition & 1 deletion bin/used_free_uidgids.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ consume()

if [[ ${range_end} -lt ${ranges[k]} ]]; then
ranges[range_end+1]=${ranges[k]}
reasons{range_end+1]=${reasons[k]}
reasons[range_end+1]=${reasons[k]}
fi
[[ ${range_start} -gt ${k} ]] && ranges[k]=$(( range_start - 1 ))
break
Expand Down