From 7207746b4f13c8d05309a68d97eb7387254e31b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20D=C3=A9ramond?= Date: Mon, 25 Oct 2021 11:31:27 +0200 Subject: [PATCH] docs: fix typo for PUPPETEER_DOWNLOAD_PATH in README (#7715) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 20b07347..fe0bfed9 100644 --- a/README.md +++ b/README.md @@ -440,7 +440,7 @@ We have a [troubleshooting](https://github.com/puppeteer/puppeteer/blob/main/doc #### Q: Chromium gets downloaded on every `npm ci` run. How can I cache the download? -The default download path is `node_modules/puppeteer/.local-chromium`. However, you can change that path with the `PUPPETTER_DOWNLOAD_PATH` environment variable. +The default download path is `node_modules/puppeteer/.local-chromium`. However, you can change that path with the `PUPPETEER_DOWNLOAD_PATH` environment variable. Puppeteer uses that variable to resolve the Chromium executable location during launch, so you don’t need to specify `PUPPETEER_EXECUTABLE_PATH` as well.