From 04eb06069210eef20e9c2157b4f5557e868d7719 Mon Sep 17 00:00:00 2001 From: John Resig Date: Mon, 14 Jan 2008 19:13:46 +0000 Subject: [PATCH] Fixed minor issue with pack build script. (Bug #2101) --- build/build/pack.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build/pack.js b/build/build/pack.js index e50dec9..f387392 100644 --- a/build/build/pack.js +++ b/build/build/pack.js @@ -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; -- 1.7.10.4