diff options
| author | Adam Vandenberg | 2010-11-26 09:43:07 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2010-11-26 09:43:07 -0800 |
| commit | 5e724cbf158023b9270f60f304ff34ed0f8e3cd3 (patch) | |
| tree | 561457556836304e082031169a908e158c9ee1d7 /Library | |
| parent | 7cfe8825dcc1ca881d7c87632726d90d33c76297 (diff) | |
| download | brew-5e724cbf158023b9270f60f304ff34ed0f8e3cd3.tar.bz2 | |
Use full path to curl in utils.rb
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/utils.rb | 2 |
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 |
