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

Side by Side Diff: native_client_sdk/src/build_tools/buildbot_common.py

Issue 10139026: Set svn:executable bit on scripts that are executable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update Created 8 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 | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 3 # found in the LICENSE file.
5 4
6 """Common utilities for all buildbot scripts that specifically don't rely 5 """Common utilities for all buildbot scripts that specifically don't rely
7 on having a full chromium checkout. 6 on having a full chromium checkout.
8 """ 7 """
9 8
10 import os 9 import os
11 import subprocess 10 import subprocess
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 full_dst = 'gs://%s/%s' % (bucket_path, filename) 101 full_dst = 'gs://%s/%s' % (bucket_path, filename)
103 102
104 subprocess.check_call( 103 subprocess.check_call(
105 '%s cp -a public-read %s %s' % (GetGsutil(), filename, full_dst), 104 '%s cp -a public-read %s %s' % (GetGsutil(), filename, full_dst),
106 shell=True, 105 shell=True,
107 cwd=cwd) 106 cwd=cwd)
108 url = 'https://commondatastorage.googleapis.com/'\ 107 url = 'https://commondatastorage.googleapis.com/'\
109 '%s/%s' % (bucket_path, filename) 108 '%s/%s' % (bucket_path, filename)
110 print '@@@STEP_LINK@download@%s@@@' % url 109 print '@@@STEP_LINK@download@%s@@@' % url
111 sys.stdout.flush() 110 sys.stdout.flush()
OLDNEW
« no previous file with comments | « native_client_sdk/src/build_tools/build_utils.py ('k') | native_client_sdk/src/build_tools/install_boost/install_boost.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698