Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: tools/apps/update_homebrew/bin/update_homebrew.dart

Issue 1179033002: homebrew: Include version information in resources (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/apps/update_homebrew/bin/update_homebrew.dart
diff --git a/tools/apps/update_homebrew/bin/update_homebrew.dart b/tools/apps/update_homebrew/bin/update_homebrew.dart
index 800fae1faf849741c20f75d4f0aa2af31207cbd8..a1e458619ab40ccf20bfe64c01024dcedcb53d6f 100644
--- a/tools/apps/update_homebrew/bin/update_homebrew.dart
+++ b/tools/apps/update_homebrew/bin/update_homebrew.dart
@@ -205,22 +205,26 @@ class Dart < Formula
end
resource 'content_shell' do
+ version '$devVersion'
url '$urlBase/dev/release/${revisions['dev']}/$contentShellFile'
sha256 '${hashes['dev'][contentShellFile]}'
end
resource 'dartium' do
+ version '$devVersion'
url '$urlBase/dev/release/${revisions['dev']}/$dartiumFile'
sha256 '${hashes['dev'][dartiumFile]}'
end
end
resource 'content_shell' do
+ version '$stableVersion'
url '$urlBase/stable/release/${revisions['stable']}/$contentShellFile'
sha256 '${hashes['stable'][contentShellFile]}'
end
resource 'dartium' do
+ version '$stableVersion'
url '$urlBase/stable/release/${revisions['stable']}/$dartiumFile'
sha256 '${hashes['stable'][dartiumFile]}'
end
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698