diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2017-08-29 13:09:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-29 13:09:10 -0700 |
commit | 681fe3390f29ccf75ee7c0a6fd0e7dbf313e57cc (patch) | |
tree | af12352eb642ad653b28a07f7630cbbcb310f812 | |
parent | 3c42edc942619b634a3f3dc7e44cf4699532f208 (diff) | |
parent | a1a06f0528abbb0a6e7118d8f4c3d2470647158d (diff) | |
download | chef-681fe3390f29ccf75ee7c0a6fd0e7dbf313e57cc.tar.gz |
Merge pull request #6363 from chef/knife_doc
Link to the knife docs in both places where we error on editor
-rw-r--r-- | lib/chef/knife/core/ui.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/knife/core/ui.rb b/lib/chef/knife/core/ui.rb index d809a8fc45..484c3ab3de 100644 --- a/lib/chef/knife/core/ui.rb +++ b/lib/chef/knife/core/ui.rb @@ -172,7 +172,7 @@ class Chef tf.sync = true tf.puts output tf.close - raise "Please set EDITOR environment variable" unless system("#{config[:editor]} #{tf.path}") + raise "Please set EDITOR environment variable. See https://docs.chef.io/knife_using.html for details." unless system("#{config[:editor]} #{tf.path}") output = IO.read(tf.path) end |