Skip to content
Snippets Groups Projects
Commit 0bb3d63c authored by Mike McQuaid's avatar Mike McQuaid
Browse files

download_strategy: fix bzr --HEAD downloads.

`bzr` needs `BZR_HOME` set to something that's writable in the sandbox
to be able to write log files.
parent efc02899
No related branches found
No related tags found
No related merge requests found
......@@ -1089,7 +1089,8 @@ end
class BazaarDownloadStrategy < VCSDownloadStrategy
def initialize(name, resource)
super
@url = @url.sub(%r{^bzr://}, "")
@url.sub!(%r{^bzr://}, "")
ENV["BZR_HOME"] = HOMEBREW_TEMP
end
def stage
......@@ -1100,7 +1101,9 @@ class BazaarDownloadStrategy < VCSDownloadStrategy
end
def source_modified_time
Time.parse Utils.popen_read("bzr", "log", "-l", "1", "--timezone=utc", cached_location.to_s)[/^timestamp: (.+)$/, 1]
timestamp = Utils.popen_read("bzr", "log", "-l", "1", "--timezone=utc", cached_location.to_s)[/^timestamp: (.+)$/, 1]
raise "Could not get any timestamps from bzr!" if timestamp.to_s.empty?
Time.parse timestamp
end
def last_commit
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment