Coding standard issue found during CR

This commit is contained in:
Roxanne Skelly 2018-09-25 14:17:15 -07:00
parent cbb4bff2db
commit 3deb3bc771

View file

@ -267,7 +267,7 @@ Process.prototype = extend(Process.prototype, {
stdout.split("\n").forEach(function (line) {
var exeData = line.split(",");
var executable = exeData[0].replace(/\"/g, "").toLowerCase();
if(executable == _command) {
if (executable == _command) {
running = true;
}
});