diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-09-13 22:54:01 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2012-09-21 18:53:49 -0400 |
commit | cb273c51eaf622b1e92d5ca0656b06073cb02da2 (patch) | |
tree | 49c017d520e658cd89dcf2abacb7cf3c87368b1c /bash-completion | |
parent | 3d3e4405ba65d65976453c567c31ff5350030e43 (diff) |
bash-completion: fix whitespace
Use spaces for indentation instead of tabs.
Diffstat (limited to 'bash-completion')
-rw-r--r-- | bash-completion/systemd-bash-completion.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bash-completion/systemd-bash-completion.sh b/bash-completion/systemd-bash-completion.sh index 39ef165f3b..db5636b8c5 100644 --- a/bash-completion/systemd-bash-completion.sh +++ b/bash-completion/systemd-bash-completion.sh @@ -143,16 +143,16 @@ _systemctl () { elif __contains_word "$verb" ${VERBS[STARTABLE_UNITS]}; then comps=$( __filter_units_by_property CanStart yes \ $( __get_inactive_units \ - | while read -r line; do \ - [[ "$line" =~ \.(device|snapshot)$ ]] || printf "%s\n" "$line"; \ - done )) + | while read -r line; do \ + [[ "$line" =~ \.(device|snapshot)$ ]] || printf "%s\n" "$line"; \ + done )) elif __contains_word "$verb" ${VERBS[RESTARTABLE_UNITS]}; then comps=$( __filter_units_by_property CanStart yes \ $( __get_all_units \ - | while read -r line; do \ - [[ "$line" =~ \.(device|snapshot|socket|timer)$ ]] || printf "%s\n" "$line"; \ - done )) + | while read -r line; do \ + [[ "$line" =~ \.(device|snapshot|socket|timer)$ ]] || printf "%s\n" "$line"; \ + done )) elif __contains_word "$verb" ${VERBS[STOPPABLE_UNITS]}; then comps=$( __filter_units_by_property CanStop yes \ |