OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2014 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
| 6 import os |
| 7 import stat |
6 import subprocess | 8 import subprocess |
7 | 9 |
8 from webkitpy.common.system import filesystem | 10 from webkitpy.common.system import filesystem |
9 from webkitpy.common.webkit_finder import WebKitFinder | 11 from webkitpy.common.webkit_finder import WebKitFinder |
10 | 12 |
11 finder = WebKitFinder(filesystem.FileSystem()) | 13 finder = WebKitFinder(filesystem.FileSystem()) |
12 | 14 |
| 15 output_file_ = finder.path_from_chromium_base('out', 'downloads', 'sky_server') |
13 subprocess.call([ | 16 subprocess.call([ |
14 'download_from_google_storage', | 17 'download_from_google_storage', |
15 '--no_resume', | 18 '--no_resume', |
16 '--no_auth', | 19 '--no_auth', |
17 '--bucket', 'mojo', | 20 '--bucket', 'mojo', |
18 '--sha1_file', finder.path_from_chromium_base('sky', 'tools', 'skygo', 'sky_
server.sha1'), | 21 '--sha1_file', finder.path_from_chromium_base('sky', 'tools', 'skygo', 'sky_
server.sha1'), |
19 '--output', finder.path_from_chromium_base('out', 'downloads', 'sky_server') | 22 '--output', output_file_ |
20 ]) | 23 ]) |
| 24 os.chmod(output_file_, os.stat(output_file_).st_mode | stat.S_IEXEC) |
OLD | NEW |