From 0972da02b5c92fcaa3b52343f76663aa622ffa69 Mon Sep 17 00:00:00 2001 From: "mark@chromium.org" Date: Thu, 26 Feb 2009 17:52:47 +0000 Subject: 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 --- tools/data_pack/repack.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/data_pack') 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 " - "[input_file3] ..." % argv[0]) + if len(argv) < 3: + print ("Usage:\n %s [input_file2] ... " % + argv[0]) sys.exit(-1) RePack(argv[1], argv[2:]) -- cgit v1.1