aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Howell2009-08-23 19:05:05 +0100
committerMax Howell2009-08-24 01:04:54 +0100
commit2eec8180eb154c2d946479c21c03dd93abc9045d (patch)
treeb892a1de059326bf82c17f4c1fffc8e645afd7ac
parent2b29e052fccb2b360e579c8b89435ec90b169253 (diff)
downloadbrew-2eec8180eb154c2d946479c21c03dd93abc9045d.tar.bz2
Playdar formula
Fix git download strategy
-rw-r--r--Library/Homebrew/download_strategy.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index 14c22468c..5453645a2 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -103,7 +103,7 @@ class GitDownloadStrategy <AbstractDownloadStrategy
dst=Dir.getwd
Dir.chdir @clone do
# http://stackoverflow.com/questions/160608/how-to-do-a-git-export-like-svn-export
- safe_system 'git', 'checkout-index', '-af', "--prefix=#{dst}"
+ safe_system 'git', 'checkout-index', '-af', "--prefix=#{dst}/"
end
end
end