X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=pack.js;h=c51f006017b92227e3aa28c39d09b69ad68babcb;hp=3a17a4c267e74386ae6068cab4219f34830342e1;hb=134619d3049edce9b27810483e8011e5dfb783e0;hpb=649a91296eb2d7e5cbd4d1407deb9c1fa714229f diff --git a/pack.js b/pack.js index 3a17a4c..c51f006 100755 --- a/pack.js +++ b/pack.js @@ -11,12 +11,13 @@ * -C no cleanup (use with -w if you need are using a cache directory.) * -p prefix for translation md5 generator (directory that files are in, and is removed * from path when generating an md5 for the translated name. - * * compresses files listed as arguments and outputs result */ + +File = imports.File.File; +Packer = imports.JSDOC.Packer.Packer; + -Packer = imports['JSDOC/Packer.js'].Packer; -File = imports.File.File; @@ -26,6 +27,7 @@ args.shift(); // pack.js var cfg = { files : [], target : false, + srcfiles : [] } @@ -55,12 +57,13 @@ for(var i =0; i < args.length;i++) { i++; continue; } + if (args[i] == '-C') { cfg.cleanup = false; continue; } if (args[i] == '-f') { - cfg.srcfile = args[i+1]; + cfg.srcfiles.push(args[i+1]); i++; continue; }