diff options
| author | Mike McQuaid | 2016-11-10 16:29:00 +0000 |
|---|---|---|
| committer | GitHub | 2016-11-10 16:29:00 +0000 |
| commit | 988900709913d9c46e80a3493db0b9dcbff8264d (patch) | |
| tree | 04f308df5cc8084d0eaf5e94cff3376a854112a5 /Library | |
| parent | 9a9ab929aedc71ad5182a5afc33a4b25747252db (diff) | |
| parent | 007002ad6fec88cdcd663e2c126c3192b8b0b355 (diff) | |
| download | brew-988900709913d9c46e80a3493db0b9dcbff8264d.tar.bz2 | |
Merge pull request #1466 from MikeMcQuaid/brew-rb-no-devcmdrun-fail
brew.rb: don't exit when failing to set devcmdrun.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/brew.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/brew.rb b/Library/Homebrew/brew.rb index a73df50d2..ac35feee8 100644 --- a/Library/Homebrew/brew.rb +++ b/Library/Homebrew/brew.rb @@ -65,8 +65,8 @@ begin unless internal_cmd internal_cmd = require? HOMEBREW_LIBRARY_PATH.join("dev-cmd", cmd) if internal_cmd && !ARGV.homebrew_developer? - safe_system "git", "config", "--file=#{HOMEBREW_REPOSITORY}/.git/config", - "--replace-all", "homebrew.devcmdrun", "true" + system "git", "config", "--file=#{HOMEBREW_REPOSITORY}/.git/config", + "--replace-all", "homebrew.devcmdrun", "true" ENV["HOMEBREW_DEV_CMD_RUN"] = "1" end end |
