1
0
mirror of https://github.com/systemd/systemd synced 2024-07-08 20:15:55 +00:00

shell-completion: fix mixed indent

This commit is contained in:
Frantisek Sumsal 2024-01-05 18:58:26 +01:00
parent 68f66a1713
commit 2fe03e25fb

View File

@ -28,7 +28,7 @@ __contains_word () {
__get_machines() {
local a b
{ machinectl list --full --max-addresses=0 --no-legend --no-pager 2>/dev/null; echo ".host"; } | \
{ while read a b; do echo " $a"; done; } | \
{ while read a b; do echo " $a"; done; } | \
sort -u
}