diff options
| author | Mike McQuaid | 2017-06-10 20:12:55 +0300 | 
|---|---|---|
| committer | Mike McQuaid | 2017-06-12 09:11:42 +0100 | 
| commit | 021cef4b2bfebe330fa55e9dcc904a08932bad94 (patch) | |
| tree | 835ed01ef034c83d219d8a5c34ed10b1d47f882f /Library/Homebrew/utils/fork.rb | |
| parent | c21abf0e3ab89e0218a26905fe44725e19cbf675 (diff) | |
| download | brew-021cef4b2bfebe330fa55e9dcc904a08932bad94.tar.bz2 | |
Autocorrect Rubocop Style/SpecialGlobalVars.
Diffstat (limited to 'Library/Homebrew/utils/fork.rb')
| -rw-r--r-- | Library/Homebrew/utils/fork.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/utils/fork.rb b/Library/Homebrew/utils/fork.rb index 35a55980e..92f5bf899 100644 --- a/Library/Homebrew/utils/fork.rb +++ b/Library/Homebrew/utils/fork.rb @@ -37,8 +37,8 @@ module Utils            read.close            Process.wait(pid) unless socket.nil?            raise Marshal.load(data) unless data.nil? || data.empty? -          raise Interrupt if $?.exitstatus == 130 -          raise "Suspicious failure" unless $?.success? +          raise Interrupt if $CHILD_STATUS.exitstatus == 130 +          raise "Suspicious failure" unless $CHILD_STATUS.success?          end        end      end  | 
