style(shell-completion): add missing semicolons

This commit is contained in:
Eisuke Kawashima
2025-07-14 19:16:26 +09:00
parent dfe6b3fa38
commit 56c093004c
3 changed files with 6 additions and 6 deletions

View File

@@ -25,7 +25,7 @@ __contains_word () {
}
__get_entry_ids() {
bootctl --no-pager list 2>/dev/null | { while read -r a b; do [[ $a == 'id:' ]] && echo " $b"; done }
bootctl --no-pager list 2>/dev/null | { while read -r a b; do [[ $a == 'id:' ]] && echo " $b"; done; }
}
_bootctl() {