From 22d02c28889c07ee2cf242861ccfb582ad7a1148 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Mon, 19 Jun 2017 13:56:01 -0700 Subject: [PATCH] Include -final in command-line 'help' output (resolve #996) --- tools/CommandLineTools.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/CommandLineTools.hx b/tools/CommandLineTools.hx index ca351c7da..86be7bcc5 100644 --- a/tools/CommandLineTools.hx +++ b/tools/CommandLineTools.hx @@ -889,6 +889,7 @@ class CommandLineTools { LogHelper.println (""); LogHelper.println (" \x1b[1m-D\x1b[0;3mvalue\x1b[0m -- Specify a define to use when processing other commands"); LogHelper.println (" \x1b[1m-debug\x1b[0m -- Use debug configuration instead of release"); + LogHelper.println (" \x1b[1m-final\x1b[0m -- Use final configuration instead of release"); LogHelper.println (" \x1b[1m-verbose\x1b[0m -- Print additional information (when available)"); LogHelper.println (" \x1b[1m-clean\x1b[0m -- Add a \"clean\" action before running the current command"); LogHelper.println (" \x1b[1m-nocolor\x1b[0m -- Disable ANSI format codes in output");