aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/dev-cmd/pull.rb
diff options
context:
space:
mode:
authorMike McQuaid2017-06-12 16:16:37 +0100
committerGitHub2017-06-12 16:16:37 +0100
commit22c431d221ca25413f3b63374d75173bedbe9e66 (patch)
treef362e3ec0a69f528234a7833de347e9c63b98080 /Library/Homebrew/dev-cmd/pull.rb
parentaa364fbf155ba4c795ebef51abee1212801c4771 (diff)
parent021cef4b2bfebe330fa55e9dcc904a08932bad94 (diff)
downloadbrew-22c431d221ca25413f3b63374d75173bedbe9e66.tar.bz2
Merge pull request #2767 from MikeMcQuaid/rubocop-no-special-global-vars
rubocop: don’t allow special global variables.
Diffstat (limited to 'Library/Homebrew/dev-cmd/pull.rb')
-rw-r--r--Library/Homebrew/dev-cmd/pull.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/dev-cmd/pull.rb b/Library/Homebrew/dev-cmd/pull.rb
index 492898a47..c3e6c1452 100644
--- a/Library/Homebrew/dev-cmd/pull.rb
+++ b/Library/Homebrew/dev-cmd/pull.rb
@@ -459,7 +459,7 @@ module Homebrew
def self.lookup(name)
json = Utils.popen_read(HOMEBREW_BREW_FILE, "info", "--json=v1", name)
- return nil unless $?.success?
+ return nil unless $CHILD_STATUS.success?
Homebrew.force_utf8!(json)
FormulaInfoFromJson.new(JSON.parse(json)[0])