From de3f07cea42b3231f609e3cfbcf497e1d6022dbf Mon Sep 17 00:00:00 2001 From: SamGondelman Date: Tue, 9 Apr 2019 16:39:46 -0700 Subject: [PATCH] remove js option from parser --- tools/oven/src/OvenCLIApplication.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/oven/src/OvenCLIApplication.cpp b/tools/oven/src/OvenCLIApplication.cpp index 640bfda64a..eab8647e71 100644 --- a/tools/oven/src/OvenCLIApplication.cpp +++ b/tools/oven/src/OvenCLIApplication.cpp @@ -33,7 +33,7 @@ OvenCLIApplication::OvenCLIApplication(int argc, char* argv[]) : parser.addOptions({ { CLI_INPUT_PARAMETER, "Path to file that you would like to bake.", "input" }, { CLI_OUTPUT_PARAMETER, "Path to folder that will be used as output.", "output" }, - { CLI_TYPE_PARAMETER, "Type of asset. [model|material|js]", "type" }, + { CLI_TYPE_PARAMETER, "Type of asset. [model|material]"/*|js]"*/, "type" }, { CLI_DISABLE_TEXTURE_COMPRESSION_PARAMETER, "Disable texture compression." } });