summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCrae <john.mccrae@progress.com>2021-05-03 09:38:34 -0700
committerJohn McCrae <john.mccrae@progress.com>2021-05-03 09:38:34 -0700
commit4cd20ddcb931d1c9bd731400127c0344ebc4ca42 (patch)
tree95897a21ef192560c5bbb5e0e3ca4122e6143f62
parent4a0160c3e243e6d74dd0a212261331aaa35de654 (diff)
downloadchef-4cd20ddcb931d1c9bd731400127c0344ebc4ca42.tar.gz
correcting the array one more time
Signed-off-by: John McCrae <john.mccrae@progress.com>
-rw-r--r--lib/chef/resource/windows_package_manager.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/windows_package_manager.rb b/lib/chef/resource/windows_package_manager.rb
index e1931e0f5b..9e108d779d 100644
--- a/lib/chef/resource/windows_package_manager.rb
+++ b/lib/chef/resource/windows_package_manager.rb
@@ -88,7 +88,7 @@ class Chef
property :scope, String,
description: "Install the package for the current user or the whole machine.",
- default: "user", equal_to: %w["user", "machine"]
+ default: "user", equal_to: %w[user machine]
property :location, String,
description: "The location on the local system to install the package to. For example 'c:\foo\'."