aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorGraham Hughes2010-02-15 20:16:11 -0800
committerAdam Vandenberg2010-02-16 15:25:28 -0800
commita4bd7c008de0c45a36e2d290acb87bdb79c16a4e (patch)
treebbdaf24e7b808a9b552d7ea35278ecbe0557fbed /Library
parente3a9e961bf3a31afdee71c1276a077396f0dfe6c (diff)
downloadbrew-a4bd7c008de0c45a36e2d290acb87bdb79c16a4e.tar.bz2
Don't merge flags in checkout-index
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-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 9a74ff59d..e60b879b6 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -190,7 +190,7 @@ class GitDownloadStrategy <AbstractDownloadStrategy
end
end
# 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', '-a', '-f', "--prefix=#{dst}/"
end
end
end