Fixed minor issue with pack build script. (Bug #2101)
authorJohn Resig <jeresig@gmail.com>
Mon, 14 Jan 2008 19:13:46 +0000 (19:13 +0000)
committerJohn Resig <jeresig@gmail.com>
Mon, 14 Jan 2008 19:13:46 +0000 (19:13 +0000)
build/build/pack.js

index e50dec9..f387392 100644 (file)
@@ -5,7 +5,7 @@ load("build/js/Words.js");
 
 // arguments
 var inFile = arguments[0];
-var outFile = arguments[1] || inFile.replace(/\.js$/, "pack.js");
+var outFile = arguments[1] || inFile.replace(/\.js$/, ".pack.js");
 
 // options
 var base62 = true;