Skip to content

Commit 3d037f2

Browse files
committed
Revert "change PUPPETEER_SKIP_DOWNLOAD to PUPPETEER_SKIP_CHROME_DOWNLOAD"
This reverts commit b179611.
1 parent b179611 commit 3d037f2

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

.evergreen.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ functions:
121121
NODE_JS_VERSION: ${node_js_version}
122122
DISTRO_ID: ${distro_id}
123123
MONOGDB_DRIVER_VERSION_OVERRIDE: ${mongodb_driver_version_override}
124-
PUPPETEER_SKIP_CHROME_DOWNLOAD: "true"
124+
PUPPETEER_SKIP_DOWNLOAD: "true"
125125
script: |
126126
set -e
127127
set -x
@@ -162,7 +162,7 @@ functions:
162162
NODE_JS_VERSION: ${node_js_version}
163163
DISTRO_ID: ${distro_id}
164164
MONOGDB_DRIVER_VERSION_OVERRIDE: ${mongodb_driver_version_override}
165-
PUPPETEER_SKIP_CHROME_DOWNLOAD: ${puppeteer_skip_download|true}
165+
PUPPETEER_SKIP_DOWNLOAD: ${puppeteer_skip_download|true}
166166
script: |
167167
set -e
168168
set -x

.evergreen/evergreen.yml.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ functions:
130130
NODE_JS_VERSION: ${node_js_version}
131131
DISTRO_ID: ${distro_id}
132132
MONOGDB_DRIVER_VERSION_OVERRIDE: ${mongodb_driver_version_override}
133-
PUPPETEER_SKIP_CHROME_DOWNLOAD: "true"
133+
PUPPETEER_SKIP_DOWNLOAD: "true"
134134
script: |
135135
set -e
136136
set -x
@@ -171,7 +171,7 @@ functions:
171171
NODE_JS_VERSION: ${node_js_version}
172172
DISTRO_ID: ${distro_id}
173173
MONOGDB_DRIVER_VERSION_OVERRIDE: ${mongodb_driver_version_override}
174-
PUPPETEER_SKIP_CHROME_DOWNLOAD: ${puppeteer_skip_download|true}
174+
PUPPETEER_SKIP_DOWNLOAD: ${puppeteer_skip_download|true}
175175
script: |
176176
set -e
177177
set -x

.github/workflows/bump-auxiliary-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66
contents: none # We use the github app to checkout and create PR
77

88
env:
9-
PUPPETEER_SKIP_CHROME_DOWNLOAD: "true"
9+
PUPPETEER_SKIP_DOWNLOAD: "true"
1010

1111
description: |
1212
This workflow increases the versions of the auxiliary (i.e. non-mongosh) packages and creates a PR

.github/workflows/cron-tasks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
env:
1919
npm_config_loglevel: verbose
2020
npm_config_foreground_scripts: "true"
21-
PUPPETEER_SKIP_CHROME_DOWNLOAD: "true"
21+
PUPPETEER_SKIP_DOWNLOAD: "true"
2222
steps:
2323
- uses: mongodb-js/devtools-shared/actions/setup-bot-token@main
2424
id: app-token

.github/workflows/publish-auxiliary-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
branches:
1010
- main
1111
env:
12-
PUPPETEER_SKIP_CHROME_DOWNLOAD: "true"
12+
PUPPETEER_SKIP_DOWNLOAD: "true"
1313

1414
permissions:
1515
contents: none # We use the github app to checkout and push tags

.github/workflows/smoke-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
env:
2222
npm_config_loglevel: verbose
2323
npm_config_foreground_scripts: "true"
24-
PUPPETEER_SKIP_CHROME_DOWNLOAD: "true"
24+
PUPPETEER_SKIP_DOWNLOAD: "true"
2525
steps:
2626
- uses: actions/checkout@v5
2727
- uses: actions/setup-node@v6

.github/workflows/update-cta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
env:
3131
npm_config_loglevel: verbose
3232
npm_config_foreground_scripts: "true"
33-
PUPPETEER_SKIP_CHROME_DOWNLOAD: "true"
33+
PUPPETEER_SKIP_DOWNLOAD: "true"
3434
steps:
3535
- uses: actions/checkout@v5
3636
- name: configure aws credentials

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"author": "Compass Team <[email protected]>",
1010
"scripts": {
1111
"bootstrap-with-chromium": "npm install && npm run compile",
12-
"bootstrap": "npx cross-env PUPPETEER_SKIP_CHROME_DOWNLOAD=1 npm install && npm run compile",
12+
"bootstrap": "npx cross-env PUPPETEER_SKIP_DOWNLOAD=1 npm install && npm run compile",
1313
"clean": "lerna clean -y && rm -Rf node_modules",
1414
"check": "lerna run check --since HEAD --exclude-dependents",
1515
"check-ci": "npm run check --workspaces --if-present",

packages/build/src/npm-packages/bump.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class PackageBumper {
8383
encoding: 'utf8',
8484
env: {
8585
...process.env,
86-
PUPPETEER_SKIP_CHROME_DOWNLOAD: 'true',
86+
PUPPETEER_SKIP_DOWNLOAD: 'true',
8787
},
8888
});
8989
}

0 commit comments

Comments
 (0)