JSDOC/Packer.js
[gnome.introspection-doc-generator] / pack.js
diff --git a/pack.js b/pack.js
index 9342046..bb63856 100755 (executable)
--- a/pack.js
+++ b/pack.js
@@ -7,6 +7,8 @@
  * -t Translate json file.
  * -w Cache / working dir.
  * -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
  */
@@ -41,11 +43,18 @@ for(var i =0; i < args.length;i++) {
         i++;
         continue;
     }
-    
+    if (args[i] == '-p') {
+        cfg.prefix = args[i+1];
+        i++;
+        continue;
+    }
     if (args[i] == '-C') {
         cfg.cleanup = false;
         continue;
     }
+    if (cfg.files.indexOf(args[i]) > -1) {
+        continue; // remove dupes.
+    }
     cfg.files.push(args[i]);
 }
 var pack;
@@ -53,7 +62,7 @@ try {
     pack = new Packer(cfg)
 } catch (e) {
     print("ERROR " + e.toString());
-    Seed.quit();
+    throw e;
 }
 if (!pack.target) {
     print(pack.out);