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

Unified Diff: dart/tools/upload_sdk.py

Issue 9074007: Adding 7-zip to third party so that we can zip SDKs on Windows. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 8 years, 12 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
« no previous file with comments | « dart/third_party/7zip/readme.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/upload_sdk.py
===================================================================
--- dart/tools/upload_sdk.py (revision 2918)
+++ dart/tools/upload_sdk.py (working copy)
@@ -101,7 +101,7 @@
os.remove(SDK_LOCAL_ZIP)
if platform.system() == 'Windows':
# Windows does not have zip. We use the 7 zip utility in third party.
- ExecuteCommand([os.path.join('..', 'third_party', '7za920', '7za'), 'a',
+ ExecuteCommand([os.path.join('..', 'third_party', '7zip', '7za'), 'a',
'-tzip', SDK_LOCAL_ZIP, os.path.basename(argv[1])])
else:
ExecuteCommand(['zip', '-yr', SDK_LOCAL_ZIP, os.path.basename(argv[1])])
« no previous file with comments | « dart/third_party/7zip/readme.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698