]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
shell-completion: fix mixed indent
authorFrantisek Sumsal <frantisek@sumsal.cz>
Fri, 5 Jan 2024 17:58:26 +0000 (18:58 +0100)
committerFrantisek Sumsal <frantisek@sumsal.cz>
Fri, 5 Jan 2024 18:21:51 +0000 (19:21 +0100)
shell-completion/bash/journalctl

index 550e2be686ccf73ad0c3d474ec05021da78e7d21..22d9eb2cfc11b05599da932509ddd45031ae4ab9 100644 (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
 }