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

Unified Diff: native_client_sdk/src/build_tools/build_sdk.py

Issue 11228013: [NaCl SDK] Refactor sdk_update*. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix windows again Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: native_client_sdk/src/build_tools/build_sdk.py
diff --git a/native_client_sdk/src/build_tools/build_sdk.py b/native_client_sdk/src/build_tools/build_sdk.py
index 08ab56386cbc8ece874e6aba6071bde01c8e294c..e537bb5b0e31ed34593d6e457051b12d1e26e345 100755
--- a/native_client_sdk/src/build_tools/build_sdk.py
+++ b/native_client_sdk/src/build_tools/build_sdk.py
@@ -787,8 +787,8 @@ def BuildStepTestUpdater(platform, pepper_ver, revision, tarfile):
naclsdk_sh = os.path.join(OUT_DIR, 'nacl_sdk', 'naclsdk')
if platform == 'win':
naclsdk_sh += '.bat'
- buildbot_common.Run([naclsdk_sh, '-U',
- server.GetURL(manifest_name), 'update', 'pepper_' + pepper_ver])
+ buildbot_common.Run([naclsdk_sh, 'update', 'pepper_' + pepper_ver,
+ '-U', server.GetURL(manifest_name), '-v'])
# Return the new pepper directory as the one inside the downloaded SDK.
return os.path.join(OUT_DIR, 'nacl_sdk', 'pepper_' + pepper_ver)

Powered by Google App Engine
This is Rietveld 408576698