diff options
author | Alex Harpin <development@landsofshadow.co.uk> | 2015-06-30 06:57:26 +0100 |
---|---|---|
committer | Alex Harpin <development@landsofshadow.co.uk> | 2015-06-30 06:57:26 +0100 |
commit | 881fb397f3759dc356588becddcaff484d134e41 (patch) | |
tree | ea4c860fdfa91fc541514c7d8990654bf8a7da37 | |
parent | 6f7b4e03d9c20ed14c1a4af1ec3d031b5c953592 (diff) | |
download | vyatta-cfg-881fb397f3759dc356588becddcaff484d134e41.tar.gz vyatta-cfg-881fb397f3759dc356588becddcaff484d134e41.zip |
vyatta-cfg: fix formatting issue with top level cli merge command
Fix a formatting issue with the merge command when listing the
available commands at the top level CLI, purely aesthetic.
Bug #509 http://bugzilla.vyos.net/show_bug.cgi?id=509
-rwxr-xr-x | etc/bash_completion.d/vyatta-cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/bash_completion.d/vyatta-cfg b/etc/bash_completion.d/vyatta-cfg index 0980b05..c87e4d9 100755 --- a/etc/bash_completion.d/vyatta-cfg +++ b/etc/bash_completion.d/vyatta-cfg @@ -478,7 +478,7 @@ get_help_text () vyatta_help_text+="\\x20\\x20" fi fi - if [ ${#_get_help_text_items[idx]} -lt 5 ]; then + if [ ${#_get_help_text_items[idx]} -lt 6 ]; then vyatta_help_text+="${_get_help_text_items[idx]}\\t\\t" elif [ ${#_get_help_text_items[idx]} -lt 13 ]; then vyatta_help_text+="${_get_help_text_items[idx]}\\t" |