| Index: dart/editor/build/promote.py
|
| diff --git a/dart/editor/build/promote.py b/dart/editor/build/promote.py
|
| index d6951da2de8a0deb854a32e7e18c162b8c3bbcaa..45ff52a73541556b9ca600b9db460186c0b9cbf8 100644
|
| --- a/dart/editor/build/promote.py
|
| +++ b/dart/editor/build/promote.py
|
| @@ -360,6 +360,15 @@ def _PromoteDartArchiveBuild(channel, revision):
|
| _Gsutil(['cp', '-a', 'public-read', from_loc + '.md5sum',
|
| to_loc + '.md5sum'])
|
|
|
| + # Copy signed editor installers for macos/windows.
|
| + for system, extension in [('windows', 'msi'), ('macos', 'dmg')]:
|
| + for arch in ['ia32', 'x64']:
|
| + from_loc = signed_namer.editor_installer_filepath(
|
| + revision, system, arch, extension)
|
| + to_loc = release_namer.editor_installer_filepath(
|
| + to_revision, system, arch, extension)
|
| + _Gsutil(['cp', '-a', 'public-read', from_loc, to_loc])
|
| +
|
| promote(revision)
|
| promote('latest')
|
|
|
|
|