From 9dcdbac2388280ca82a8b3f19d9d4337d7b86543 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Mon, 6 Jun 2011 06:47:46 +0000 Subject: [PATCH] better help message for the --compressor option of build.py, no functional change git-svn-id: http://svn.openlayers.org/trunk/openlayers@12045 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- build/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build.py b/build/build.py index 9ca6a1c0f2..772b430f4c 100755 --- a/build/build.py +++ b/build/build.py @@ -70,7 +70,7 @@ def build(config_file = None, output_file = None, options = None): if __name__ == '__main__': opt = optparse.OptionParser(usage="%s [options] [config_file] [output_file]\n Default config_file is 'full.cfg', Default output_file is 'OpenLayers.js'") - opt.add_option("-c", "--compressor", dest="compressor", help="compression method: one of 'jsmin', 'minimize', or 'none'", default="jsmin") + opt.add_option("-c", "--compressor", dest="compressor", help="compression method: one of 'jsmin', 'minimize', 'closure_ws', 'closure', or 'none'", default="jsmin") (options, args) = opt.parse_args() if not len(args): build(options=options)