summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-26 17:52:47 +0000
committermark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-26 17:52:47 +0000
commit0972da02b5c92fcaa3b52343f76663aa622ffa69 (patch)
tree9071964724c9fd0684e0cc54c3e90715fe2230ea /tools
parent56c66f21ef57db319f453499d3bf1442e5a0455c (diff)
downloadchromium_src-0972da02b5c92fcaa3b52343f76663aa622ffa69.zip
chromium_src-0972da02b5c92fcaa3b52343f76663aa622ffa69.tar.gz
chromium_src-0972da02b5c92fcaa3b52343f76663aa622ffa69.tar.bz2
Handle repack.py and .pak files in the GYP-based build.
Review URL: http://codereview.chromium.org/27216 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10478 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-xtools/data_pack/repack.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/data_pack/repack.py b/tools/data_pack/repack.py
index 5d7a344..21f568d 100755
--- a/tools/data_pack/repack.py
+++ b/tools/data_pack/repack.py
@@ -30,9 +30,9 @@ def RePack(output_file, input_files):
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:])