mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-02-17 09:46:37 +00:00
Merge pull request #513 from embark-framework/remove_backtrace
remove anoying backtrace
This commit is contained in:
commit
5ccbdbb41c
@ -141,7 +141,9 @@ Blockchain.prototype.run = function() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
args = _.compact(args);
|
args = _.compact(args);
|
||||||
console.trace(`Geth command: ${cmd} ${args.join(' ')}`);
|
|
||||||
|
let full_cmd = cmd + " " + args.join(' ');
|
||||||
|
console.log(__("running: %s", full_cmd.underline).green);
|
||||||
self.child = child_process.spawn(cmd, args, {cwd: process.cwd()});
|
self.child = child_process.spawn(cmd, args, {cwd: process.cwd()});
|
||||||
|
|
||||||
self.child.on('error', (err) => {
|
self.child.on('error', (err) => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user