Fix exec syntax in browser/build.js, fixes error on windows
This commit is contained in:
parent
a0daef56d9
commit
880efdc22f
|
@ -63,7 +63,7 @@ var createBitcore = function(opts) {
|
||||||
opts.dir = opts.dir || '';
|
opts.dir = opts.dir || '';
|
||||||
|
|
||||||
// concat browser vendor files
|
// concat browser vendor files
|
||||||
exec('cd ' + opts.dir + 'browser; sh concat.sh', puts);
|
exec('cd ' + opts.dir + 'browser & sh concat.sh', puts);
|
||||||
|
|
||||||
if (!opts.includeall && (!opts.submodules || opts.submodules.length === 0)) {
|
if (!opts.includeall && (!opts.submodules || opts.submodules.length === 0)) {
|
||||||
if (!opts.stdout) console.log('Must use either -s or -a option. For more info use the --help option');
|
if (!opts.stdout) console.log('Must use either -s or -a option. For more info use the --help option');
|
||||||
|
|
Loading…
Reference in New Issue