summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorZack Hobson2014-02-04 10:46:38 -0800
committerZack Hobson2014-02-04 10:46:38 -0800
commitde8c8205af7dc66d99df321de0b4a65769003670 (patch)
treeb9bcba8dd7c7ed8f12edc7f4a5bd40d2f3940f8e /lib
parent34de47f901292fb5f8e4147a0d3cd608b50da790 (diff)
downloadhcl-de8c8205af7dc66d99df321de0b4a65769003670.tar.bz2
command#completion: fix example in deprecation warning
Diffstat (limited to 'lib')
-rw-r--r--lib/hcl/commands.rb2
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