mirror of https://github.com/embarklabs/embark.git
make linter happy
This commit is contained in:
parent
6c03a2e212
commit
a7a6a62edc
|
@ -193,7 +193,7 @@ Blockchain.prototype.checkPathLength = function() {
|
||||||
|
|
||||||
Blockchain.prototype.isClientInstalled = function(callback) {
|
Blockchain.prototype.isClientInstalled = function(callback) {
|
||||||
let versionCmd = this.client.determineVersionCommand();
|
let versionCmd = this.client.determineVersionCommand();
|
||||||
this.runCommand(versionCmd, {}, (err, stdout, stderr) => {
|
this.runCommand(versionCmd, {}, (err, stdout, _stderr) => {
|
||||||
if (err || !stdout || stdout.indexOf("not found") >= 0) {
|
if (err || !stdout || stdout.indexOf("not found") >= 0) {
|
||||||
return callback('Geth not found');
|
return callback('Geth not found');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue