diff options
author | 2021-10-05 23:08:06 -0700 | |
---|---|---|
committer | 2021-10-05 23:08:06 -0700 | |
commit | 3b10cfae804e7a94421acf2f1573241091480153 (patch) | |
tree | a3878ede5cf15a7c1f6775bc7fecb0e853b9bd80 /integration/scripts/browser.js | |
parent | bd14ad9e6ed9343acc21483c0c44cf0b81d8bae6 (diff) | |
download | bun-3b10cfae804e7a94421acf2f1573241091480153.tar.gz bun-3b10cfae804e7a94421acf2f1573241091480153.tar.zst bun-3b10cfae804e7a94421acf2f1573241091480153.zip |
analytics is good enough for now
Diffstat (limited to 'integration/scripts/browser.js')
-rw-r--r-- | integration/scripts/browser.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/integration/scripts/browser.js b/integration/scripts/browser.js index f3ddefea9..2d758e638 100644 --- a/integration/scripts/browser.js +++ b/integration/scripts/browser.js @@ -16,6 +16,10 @@ const bunExec = process.env.BUN_BIN || "bun"; const bunProcess = child_process.spawn(bunExec, bunFlags, { cwd: snippetsDir, stdio: "pipe", + env: { + ...process.env, + DISABLE_BUN_ANALYTICS: "1", + }, shell: false, }); |