diff options
author | Tim Smith <tsmith@chef.io> | 2019-04-19 14:27:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-19 14:27:42 -0700 |
commit | 505bd0d47088ef16bc5b444da812f8c964b01f56 (patch) | |
tree | 3e5938ca496b6d9d82625c50111062167f3bd3c7 | |
parent | a74ad86809b2da0ef69bea1f08464f5ef7de2663 (diff) | |
parent | 6dde0b1c8645ed2cac9cff9ec7c3e340aa63ca4f (diff) | |
download | mixlib-shellout-505bd0d47088ef16bc5b444da812f8c964b01f56.tar.gz |
Merge pull request #178 from martinisoft/martinisoft/fix_readme
Misnamed parameter in README
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ In addition to the command to run there are other options that can be set to cha Run a command as the `www` user with no extra ENV settings from `/tmp` with a 1s timeout ```ruby - cmd = Mixlib::ShellOut.new("apachectl", "start", :user => 'www', :env => nil, :cwd => '/tmp', :timeout => 1) + cmd = Mixlib::ShellOut.new("apachectl", "start", :user => 'www', :environment => nil, :cwd => '/tmp', :timeout => 1) cmd.run_command # etc. ``` |