mirror of https://github.com/embarklabs/embark.git
if version name doesn't have /, then just use the full name
This commit is contained in:
parent
782044ef7c
commit
16909c7f1a
|
@ -222,6 +222,9 @@ class Engine {
|
|||
if (err) {
|
||||
return cb({name: "Ethereum node (version unknown)", status: 'on'});
|
||||
}
|
||||
if (version.indexOf("/") < 0) {
|
||||
return cb({name: version, status: 'on'});
|
||||
}
|
||||
let nodeName = version.split("/")[0];
|
||||
let versionNumber = version.split("/")[1].split("-")[0];
|
||||
let name = nodeName + " " + versionNumber + " (Ethereum)";
|
||||
|
|
Loading…
Reference in New Issue