Remove unnecessary use of Dir[]

This commit is contained in:
Jack Nagel 2014-06-01 15:26:40 -05:00
parent 0445318494
commit 0133afe6f8

View File

@ -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