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

Unified Diff: tools/data_pack/repack.py

Issue 27216: Handle repack.py and .pak files in the GYP-based build. (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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 | « chrome/chrome.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/data_pack/repack.py
===================================================================
--- tools/data_pack/repack.py (revision 10474)
+++ tools/data_pack/repack.py (working copy)
@@ -30,9 +30,9 @@
data_pack.WriteDataPack(resources, output_file)
def main(argv):
- if len(argv) < 4:
- print ("Usage:\n %s <output_filename> <input_file1> <input_file2> "
- "[input_file3] ..." % argv[0])
+ if len(argv) < 3:
+ print ("Usage:\n %s <output_filename> <input_file1> [input_file2] ... " %
+ argv[0])
sys.exit(-1)
RePack(argv[1], argv[2:])
« no previous file with comments | « chrome/chrome.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698