diff options
author | danielsdeleo <dan@getchef.com> | 2015-05-15 13:42:04 -0700 |
---|---|---|
committer | danielsdeleo <dan@getchef.com> | 2015-05-15 13:42:04 -0700 |
commit | 5404e6f2711efff087f570d8ac0dc062ff8de821 (patch) | |
tree | 5ca2154d0a165fc878cbc5e12b3ce80242f46302 /lib/mixlib/shellout/unix.rb | |
parent | 81235ea8f9478679513b83e5ddcc4c6de09f41d5 (diff) | |
download | mixlib-shellout-5404e6f2711efff087f570d8ac0dc062ff8de821.tar.gz |
Fix 2 ruby warnings for uninitialized variables
Diffstat (limited to 'lib/mixlib/shellout/unix.rb')
-rw-r--r-- | lib/mixlib/shellout/unix.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/mixlib/shellout/unix.rb b/lib/mixlib/shellout/unix.rb index d8063df..54f9fc3 100644 --- a/lib/mixlib/shellout/unix.rb +++ b/lib/mixlib/shellout/unix.rb @@ -106,6 +106,7 @@ module Mixlib propagate_pre_exec_failure get_child_pgid + @status = nil @result = nil @execution_time = 0 |