JSDOC/PackerRun.vala
[gnome.introspection-doc-generator] / JSDOC / PackerRun.vala
index abcd034..f2cb583 100644 (file)
@@ -18,7 +18,7 @@ namespace JSDOC
        {
                const OptionEntry[] options = {
                
-                       { "file", 0, 0, OptionArg.STRING_ARRAY, ref opt_files ,"add a file to compile", null },
+                       { "jsfile", 0, 0, OptionArg.STRING_ARRAY, ref opt_files ,"add a file to compile", null },
                        { "target", 0, 0, OptionArg.STRING, ref opt_target, "Target File to write (eg. roojs.js)", null },
                        { "debug-target", 0, 0, OptionArg.STRING, ref opt_debug_target, "Target File to write debug code (eg. roojs-debug.js)", null },
                        { "tmpdir", 0, 0, OptionArg.STRING, ref opt_tmpdir, "Temporary Directory to use", null },
@@ -35,8 +35,8 @@ namespace JSDOC
                public static string opt_tmpdir = "";
                
                
-               public static string[] opt_files;
-               public static string opt_files_from = "";
+               public static string[]? opt_files;
+               public static string[]? opt_files_from;
                public static bool opt_debug = false;
                
 
@@ -77,8 +77,8 @@ namespace JSDOC
                        
                        // now run the Packer...
                        var p = new Packer(opt_target, opt_debug_target);
-                       if (opt_files.length > 0) {
-                               GLib.debug("Adding Files");
+                       if (opt_files != null) {
+                               GLib.debug("Adding Files %d", opt_files.length);
                                p.loadFiles(opt_files);
                        } else {
                                GLib.debug("No files added");