From 6d51537bb739ecbde7bca198ec192ac19b62845f Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 25 Nov 2015 17:08:17 +0800 Subject: [PATCH] JSDOC/PackerRun.vala --- JSDOC/PackerRun.vala | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/JSDOC/PackerRun.vala b/JSDOC/PackerRun.vala index e141b2b..bd1702a 100644 --- a/JSDOC/PackerRun.vala +++ b/JSDOC/PackerRun.vala @@ -16,7 +16,7 @@ namespace JSDOC { "tmpdir", 0, 0, OptionArg.STRING, ref opt_tmpdir, "Temporary Directory to use", null }, { "file", 0, 0, OptionArg.STRING, ref opt_files ,"add a file to compile", null }, { "files-from", 0, 0, OptionArg.STRING, ref opt_files_from ,"a text file listing files to compile", null }, - { "output", 0, 0, OptionArg.STRING, ref opt_compile_output, "output binary file path", null }, + { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "Show debug messages", null }, { null } }; @@ -24,7 +24,10 @@ namespace JSDOC public static string opt_tmpdir; - public static string[] opt_compile_files; + public static string[] opt_files; + public static string opt_files_from; + + public PackerRun (string[] args) -- 2.39.2