From: Alan Knowles Date: Wed, 5 Jul 2017 02:46:22 +0000 (+0800) Subject: src/main.vala X-Git-Tag: release-1.5~81 X-Git-Url: http://git.roojs.org/?p=roojspacker;a=commitdiff_plain;h=f64b2c9efb33be6d5d6072f26f0d4963a587fa60 src/main.vala --- diff --git a/src/main.vala b/src/main.vala index 8b3777a..eaa4a3f 100644 --- a/src/main.vala +++ b/src/main.vala @@ -4,29 +4,11 @@ public static int main(string[] args) // debug("ARG: %s\n", a); //} - var opt_context = new OptionContext ("JSDOC Packer"); - - try { - opt_context.set_help_enabled (true); - opt_context.add_main_entries (options, null); - if (!opt_context.parse ( ref args)) { - print("options parse error"); - GLib.Process.exit(Posix.EXIT_FAILURE); - } - - - - } catch (OptionError e) { - stdout.printf ("error: %s\n", e.message); - stdout.printf ("Run '%s --help' to see a full list of available command line options.\n %s", - args[0], opt_context.get_help(true,null)); - GLib.Process.exit(Posix.EXIT_FAILURE); - - } - var pr = new JSDOC.PackerRun(args); - pr.run; + var pr = new JSDOC.PackerRun( ); + pr.parseArgs(args); + pr.run(); return 0; } \ No newline at end of file