summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Higgins <pete@peterhiggins.org>2020-03-20 13:09:20 -0700
committerPete Higgins <pete@peterhiggins.org>2020-03-20 13:09:27 -0700
commitd05ffa11e744d245ebc09e0da15d3887b2603305 (patch)
tree2cd7310cfad674a05628d17888d43d125a190ef5
parent8d50c9a18183c005dcb83660c8d65fc908bc495e (diff)
downloadchef-d05ffa11e744d245ebc09e0da15d3887b2603305.tar.gz
Remove outdated comment about shell args on different platforms.remove-outdated-comment
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
-rw-r--r--lib/chef/mixin/shell_out.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/chef/mixin/shell_out.rb b/lib/chef/mixin/shell_out.rb
index 72aa82fc6c..658442fd6d 100644
--- a/lib/chef/mixin/shell_out.rb
+++ b/lib/chef/mixin/shell_out.rb
@@ -26,10 +26,6 @@ class Chef
#
# all consumers should now call shell_out!/shell_out.
#
- # on unix the shell_out API supports the clean_array() kind of syntax (below) so that
- # array args are flat/compact/to_s'd. on windows, array args aren't supported to its
- # up to the caller to join(" ") on arrays of strings.
- #
# the shell_out_compacted/shell_out_compacted! APIs are private but are intended for use
# in rspec tests, and should ideally always be used to make code refactorings that do not
# change behavior easier: