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)
This commit is contained in:
dthorpe 2014-05-03 18:03:40 -07:00
commit aa69ca971d

View file

@ -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,