aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorMax Howell2009-12-04 17:44:18 +0000
committerMax Howell2009-12-04 18:16:32 +0000
commitcbd7ff972c52ebcbe87f03040fa606b1b2c1c706 (patch)
tree0d4a00b8edff82d31ce859b0e08ad6c3f20ffeaa /Library/Homebrew
parent928317d80f67d7cbc73bfa4f04bcd1e4e6cdf980 (diff)
downloadhomebrew-cbd7ff972c52ebcbe87f03040fa606b1b2c1c706.tar.bz2
Fixes broken SubversionDownloadStrategy
Being able to commit parts of diffs can bite you if you aren't careful.
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/download_strategy.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index 4f3f2146b..579968e85 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -126,6 +126,11 @@ class SubversionDownloadStrategy <AbstractDownloadStrategy
args << '-q' unless ARGV.verbose?
safe_system *args
end
+
+ # currently only used by mplayer.rb
+ def svn
+ '/usr/bin/svn'
+ end
end
class GitDownloadStrategy <AbstractDownloadStrategy