aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-03-13 18:07:11 -0500
committerJack Nagel2014-03-13 18:07:11 -0500
commit6a23fecc21882d725d9db17751e7aae6f766a32b (patch)
treef4c2323a8d7a91923b57469ad6ed37d082c0723d /Library
parent067f4d474cb158debb8ad7d19d664fb2540cb09f (diff)
downloadhomebrew-6a23fecc21882d725d9db17751e7aae6f766a32b.tar.bz2
Stop letting GitDependency inject HOMEBREW_PREFIX/bin into the environment
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/requirements.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/requirements.rb b/Library/Homebrew/requirements.rb
index 73e0860b7..80a74ab83 100644
--- a/Library/Homebrew/requirements.rb
+++ b/Library/Homebrew/requirements.rb
@@ -116,5 +116,5 @@ end
class GitDependency < Requirement
fatal true
default_formula 'git'
- satisfy { which('git') }
+ satisfy { !!which('git') }
end