From aa69ca971d1535f9fb7e4e4a8d7ec5fabbdd2349 Mon Sep 17 00:00:00 2001 From: dthorpe Date: Sat, 3 May 2014 18:03:40 -0700 Subject: [PATCH] Fix concat.sh failure when building copay on Windows. (and silent? bug in Linux builds - build.js attempts to cd to js/browser subdir, but there is no such directory in the copay project, and concat.sh resides in the project root) --- util/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/build.js b/util/build.js index fd587da26..14855bbe8 100755 --- a/util/build.js +++ b/util/build.js @@ -30,7 +30,7 @@ var createBundle = function(opts) { opts.dir = opts.dir || 'js/'; // concat browser vendor files - exec('cd ' + opts.dir + 'browser; sh concat.sh', puts); + exec('sh concat.sh', puts); var bopts = { pack: pack,