summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-10-14 23:47:06 -0700
committerGitHub <noreply@github.com>2019-10-14 23:47:06 -0700
commit61f4c788c8c0cccc9d4877ce0da597d8257d3b58 (patch)
tree90c357fa6f05e7bed960052231b62f14456f27b3
parentcd9068ed24e8d3a185bd2896cb2c66557dadb712 (diff)
parent67a8d0432e950a52c5d68161f1f50f9bbe6493e2 (diff)
downloadchef-61f4c788c8c0cccc9d4877ce0da597d8257d3b58.tar.gz
Merge pull request #8995 from MsysTechnologiesllc/vasundhara/Fix_description_for_knife_download_help_for_no_diff_and_force_options
Fix typo for knife download --[no]diff and --[-no]force options.
-rw-r--r--lib/chef/knife/download.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/knife/download.rb b/lib/chef/knife/download.rb
index b3cf61430f..ab8c92a1c0 100644
--- a/lib/chef/knife/download.rb
+++ b/lib/chef/knife/download.rb
@@ -43,7 +43,7 @@ class Chef
long: "--[no-]force",
boolean: true,
default: false,
- description: "Force upload of files even if they match (quicker and harmless, but doesn't print out what it changed)."
+ description: "Force download of files even if they match (quicker and harmless, but doesn't print out what it changed)."
option :dry_run,
long: "--dry-run",
@@ -56,7 +56,7 @@ class Chef
long: "--[no-]diff",
boolean: true,
default: true,
- description: "Turn off to avoid uploading existing files; only new (and possibly deleted) files with --no-diff."
+ description: "Turn off to avoid downloading existing files; only new (and possibly deleted) files with --no-diff."
option :cookbook_version,
long: "--cookbook-version VERSION",