diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2010-07-21 16:48:12 -0700 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2010-07-21 16:48:12 -0700 |
commit | 239630ae8d60dc2917e6f470d349263d33707406 (patch) | |
tree | a18c6688e6911c538f8b6af7cdbb4c017a87df34 /etc | |
parent | 5ae890a9293cbe4a6c6ef358c07b32b9da7306fb (diff) | |
download | vyatta-cfg-239630ae8d60dc2917e6f470d349263d33707406.tar.gz vyatta-cfg-239630ae8d60dc2917e6f470d349263d33707406.zip |
change quoting
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/bash_completion.d/20vyatta-cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/bash_completion.d/20vyatta-cfg b/etc/bash_completion.d/20vyatta-cfg index a96f0d9..3395638 100755 --- a/etc/bash_completion.d/20vyatta-cfg +++ b/etc/bash_completion.d/20vyatta-cfg @@ -743,7 +743,7 @@ generate_help_text () IFS='
' local chstr=$(echo -en "$vyatta_cfg_comp_help\n" \ | while read comp_help_line; do - echo "vyatta_help_text+=\" $comp_help_line\\n\";" + echo "vyatta_help_text+=' $comp_help_line\\n';" done) eval "$chstr" IFS=$sIFS |