aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-11-26 09:43:07 -0800
committerAdam Vandenberg2010-11-26 09:43:07 -0800
commit8101c083ebc4d471935fc93d4b4254f8363a971e (patch)
treee6a6f804016ed26bf5100f193afb9dd62a7544b3 /Library
parent3b76afd2a9fe2d2435c5f4ecc4e6f4e23978f5e2 (diff)
downloadhomebrew-8101c083ebc4d471935fc93d4b4254f8363a971e.tar.bz2
Use full path to curl in utils.rb
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/utils.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb
index e2eb9cb3e..de16df994 100644
--- a/Library/Homebrew/utils.rb
+++ b/Library/Homebrew/utils.rb
@@ -124,7 +124,7 @@ def quiet_system cmd, *args
end
def curl *args
- safe_system 'curl', '-f#LA', HOMEBREW_USER_AGENT, *args unless args.empty?
+ safe_system '/usr/bin/curl', '-f#LA', HOMEBREW_USER_AGENT, *args unless args.empty?
end
def puts_columns items, cols = 4