diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/download_strategy.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index b99a0b005..43d10ae9f 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -487,10 +487,10 @@ class MercurialDownloadStrategy < AbstractDownloadStrategy if @spec and @ref ohai "Checking out #{@spec} #{@ref}" Dir.chdir @clone do - safe_system 'hg', 'archive', '-y', '-r', @ref, '-t', 'files', dst + safe_system 'hg', 'archive', '--subrepos', '-y', '-r', @ref, '-t', 'files', dst end else - safe_system 'hg', 'archive', '-y', '-t', 'files', dst + safe_system 'hg', 'archive', '--subrepos', '-y', '-t', 'files', dst end end end |
