diff options
| author | Jack Nagel | 2014-06-01 15:26:40 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-06-01 15:27:40 -0500 | 
| commit | 0133afe6f8565ae84ab6267eb8e773abaad827cd (patch) | |
| tree | d7ceaaef70a4b9c5124dc89a0798b4d4d5263e65 /Library/Homebrew/download_strategy.rb | |
| parent | 0445318494be594070577542c2501738b41a9db6 (diff) | |
| download | brew-0133afe6f8565ae84ab6267eb8e773abaad827cd.tar.bz2 | |
Remove unnecessary use of Dir[]
Diffstat (limited to 'Library/Homebrew/download_strategy.rb')
| -rw-r--r-- | Library/Homebrew/download_strategy.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index ce7367398..cc1380bcc 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -754,7 +754,7 @@ class BazaarDownloadStrategy < VCSDownloadStrategy      # FIXME: The export command doesn't work on checkouts      # See https://bugs.launchpad.net/bzr/+bug/897511      FileUtils.cp_r Dir[@clone+"{.}"], Dir.pwd -    FileUtils.rm_r Dir[Dir.pwd+"/.bzr"] +    FileUtils.rm_r ".bzr"    end  end  | 
