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

Side by Side Diff: chrome/installer/mini_installer/generate_next_version_mini_installer.py

Issue 1902233003: Add next_version_mini_installer target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 unified diff | Download patch
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # Copyright 2016 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 """Generates a mini_installer with a higher version than an existing one."""
7
8 import optparse
9 import subprocess
10 import sys
11
12
13 def main():
14 parser = optparse.OptionParser()
15 parser.add_option('--out', help='Path to the generated mini_installer.')
16 options, args = parser.parse_args()
17 assert not args
18
19 return subprocess.call([
20 'alternate_version_generator.exe',
21 '--force',
22 '--out=' + options.out,
23 ])
24
25
26 if '__main__' == __name__:
27 sys.exit(main())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698