From 5e724cbf158023b9270f60f304ff34ed0f8e3cd3 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Fri, 26 Nov 2010 09:43:07 -0800 Subject: [PATCH] Use full path to curl in utils.rb --- Library/Homebrew/utils.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index e2eb9cb3e2..de16df9948 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