aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2016-11-10 16:29:00 +0000
committerGitHub2016-11-10 16:29:00 +0000
commit988900709913d9c46e80a3493db0b9dcbff8264d (patch)
tree04f308df5cc8084d0eaf5e94cff3376a854112a5 /Library
parent9a9ab929aedc71ad5182a5afc33a4b25747252db (diff)
parent007002ad6fec88cdcd663e2c126c3192b8b0b355 (diff)
downloadbrew-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.rb4
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