summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-01-28 13:54:03 -0800
committerGitHub <noreply@github.com>2020-01-28 13:54:03 -0800
commite54b3810ea0f2df46522eaa6fb8302685d160c4c (patch)
treededa03be82c4698e2cde4b30ddb947fa01047ed5
parent39ad7772f8b9e6d101fdb2a1b3f949199bb9a9f8 (diff)
parent2acf044ba73db2e83d98e7430ac36511bf1c4d6c (diff)
downloadchef-e54b3810ea0f2df46522eaa6fb8302685d160c4c.tar.gz
Merge pull request #9293 from chef/remove_dk_warning
Remove DK wording from knife warning
-rw-r--r--lib/chef/knife.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/knife.rb b/lib/chef/knife.rb
index e040de9d57..255636868f 100644
--- a/lib/chef/knife.rb
+++ b/lib/chef/knife.rb
@@ -284,7 +284,7 @@ class Chef
elsif category_commands = guess_category(args)
list_commands(category_commands)
elsif OFFICIAL_PLUGINS.include?(args[0]) # command was an uninstalled official chef knife plugin
- ui.info("Use `#{Chef::Dist::EXEC} gem install knife-#{args[0]}` to install the plugin into ChefDK / Chef Workstation")
+ ui.info("Use `#{Chef::Dist::EXEC} gem install knife-#{args[0]}` to install the plugin into Chef Workstation")
else
list_commands
end