diff options
author | Stuart Preston <stuart@chef.io> | 2018-06-20 14:26:32 +0100 |
---|---|---|
committer | Stuart Preston <stuart@chef.io> | 2018-06-20 14:26:32 +0100 |
commit | eaac3e8f2fb695b47cde9b595e87d83e3b23d984 (patch) | |
tree | 42455e9b395ecc14fc7f3aaa9f875abefd620cbf /lib/chef/provider/group/dscl.rb | |
parent | 08bd853e9fe52a92c310e1ff2a5171324998b593 (diff) | |
parent | f960c7f3b7c58c80a2e104ed631d97190b272b4e (diff) | |
download | chef-eaac3e8f2fb695b47cde9b595e87d83e3b23d984.tar.gz |
Merge branch 'master' into sp/ffi-powershell
Signed-off-by: <>
Diffstat (limited to 'lib/chef/provider/group/dscl.rb')
-rw-r--r-- | lib/chef/provider/group/dscl.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/group/dscl.rb b/lib/chef/provider/group/dscl.rb index 81c7d66aa8..a5c4d27ddb 100644 --- a/lib/chef/provider/group/dscl.rb +++ b/lib/chef/provider/group/dscl.rb @@ -27,7 +27,7 @@ class Chef argdup = args.dup cmd = argdup.shift shellcmd = [ "dscl", ".", "-#{cmd}", argdup ] - status = shell_out_compact(shellcmd) + status = shell_out(shellcmd) stdout_result = "" stderr_result = "" status.stdout.each_line { |line| stdout_result << line } |