mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-11 14:24:24 +00:00
ignore stderr since geth outputs normal logs to it
This commit is contained in:
parent
343bc643a9
commit
1a8989361e
@ -222,7 +222,7 @@ Blockchain.prototype.checkPathLength = function() {
|
||||
Blockchain.prototype.isClientInstalled = function(callback) {
|
||||
let versionCmd = this.client.determineVersionCommand();
|
||||
this.runCommand(versionCmd, {}, (err, stdout, stderr) => {
|
||||
if (err || stderr || !stdout || stdout.indexOf("not found") >= 0) {
|
||||
if (err || !stdout || stdout.indexOf("not found") >= 0) {
|
||||
return callback('Geth not found');
|
||||
}
|
||||
callback();
|
||||
|
Loading…
x
Reference in New Issue
Block a user