aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/download_strategy.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index 43d10ae9f..479dc8fae 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -486,9 +486,7 @@ class MercurialDownloadStrategy < AbstractDownloadStrategy
Dir.chdir @clone do
if @spec and @ref
ohai "Checking out #{@spec} #{@ref}"
- Dir.chdir @clone do
- safe_system 'hg', 'archive', '--subrepos', '-y', '-r', @ref, '-t', 'files', dst
- end
+ safe_system 'hg', 'archive', '--subrepos', '-y', '-r', @ref, '-t', 'files', dst
else
safe_system 'hg', 'archive', '--subrepos', '-y', '-t', 'files', dst
end