From 2871bcd57d92bd3d7fed4738d3d9315773291f5c Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 13 Aug 2019 16:28:09 -0700 Subject: [PATCH] chore(bisect): inherit parent ENV when launching script (#4842) --- utils/bisect.js | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/bisect.js b/utils/bisect.js index c20ecee9ad4..b8bb52fd776 100755 --- a/utils/bisect.js +++ b/utils/bisect.js @@ -116,6 +116,7 @@ function runScript(scriptPath, revisionInfo) { const child = fork(scriptPath, [], { stdio: ['inherit', 'inherit', 'inherit', 'ipc'], env: { + ...process.env, PUPPETEER_EXECUTABLE_PATH: revisionInfo.executablePath, }, });