diff options
| author | Zack Hobson | 2014-02-04 10:46:38 -0800 | 
|---|---|---|
| committer | Zack Hobson | 2014-02-04 10:46:38 -0800 | 
| commit | de8c8205af7dc66d99df321de0b4a65769003670 (patch) | |
| tree | b9bcba8dd7c7ed8f12edc7f4a5bd40d2f3940f8e | |
| parent | 34de47f901292fb5f8e4147a0d3cd608b50da790 (diff) | |
| download | hcl-de8c8205af7dc66d99df321de0b4a65769003670.tar.bz2 | |
command#completion: fix example in deprecation warning
| -rw-r--r-- | lib/hcl/commands.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lib/hcl/commands.rb b/lib/hcl/commands.rb index 63de83b..09e0c6f 100644 --- a/lib/hcl/commands.rb +++ b/lib/hcl/commands.rb @@ -94,7 +94,7 @@ module HCl        command ||= $PROGRAM_NAME.split('/').last        $stderr.puts \          "The hcl completion command is deprecated (and slow!), instead use something like:", -        "> complete -W `cat #{HCl::App::ALIAS_LIST}` #{command}" +        "> complete -W "`cat #{HCl::App::ALIAS_LIST}`" #{command}"        %[complete -W "#{aliases.join ' '}" #{command}]      end | 
