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

Side by Side Diff: tools/download_from_google_storage.py

Issue 1841863002: Update monet. (Closed) Base URL: https://github.com/domokit/monet.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
« no previous file with comments | « tools/dart/update.py ('k') | tools/gdb/gdb_chrome.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # Copyright 2015 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 # depot_tools' download_from_google_storage.py expects to be run from the parent
7 # of the 'src' directory so that paths like 'src/buildtools/linux64/gn.sha1'
8 # resolve. This script exists at src/tools/ and sets the working directory for
9 # download_from_google_storage.py so that it can be run from anywhere.
10
11 import os
12 import sys
13 import subprocess
14
15 def main(args):
16 dir = os.path.abspath(os.path.join(os.path.dirname(__file__),
17 os.pardir, os.pardir))
18 subprocess.check_call(['download_from_google_storage.py'] + args, cwd=dir)
19
20 if __name__ == '__main__':
21 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « tools/dart/update.py ('k') | tools/gdb/gdb_chrome.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698