Commit fe64f860 authored by einbinder's avatar einbinder Committed by Commit bot

DevTools: Don't show an error in npm start when CHROMIUM_PATH is missing

BUG=none

Review-Url: https://codereview.chromium.org/2472913005
Cr-Commit-Position: refs/heads/master@{#430136}
parent a465a4b2
......@@ -78,6 +78,9 @@ function launchChrome(filePath, chromeArgs, cleanup)
});
} catch (error) {
onLaunchChromeError();
if (cleanup)
cleanup();
return;
}
child.on("error", onLaunchChromeError);
child.on("exit", onExit);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment