From ca957685104a7150aaa725b4ea1eaccaa60c74ea Mon Sep 17 00:00:00 2001 From: Connor Clark Date: Wed, 29 Nov 2023 14:39:12 -0800 Subject: [PATCH] test: use bash instead of sh to call test-recipes.sh (#15647) --- docs/recipes/custom-gatherer-puppeteer/package.json | 2 +- docs/recipes/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/recipes/custom-gatherer-puppeteer/package.json b/docs/recipes/custom-gatherer-puppeteer/package.json index aed8e948a8b9..532c4700c345 100644 --- a/docs/recipes/custom-gatherer-puppeteer/package.json +++ b/docs/recipes/custom-gatherer-puppeteer/package.json @@ -3,7 +3,7 @@ "private": true, "type": "module", "scripts": { - "test": "sh test.sh" + "test": "bash test.sh" }, "devDependencies": { "lighthouse": "file:../../../dist/lighthouse.tgz" diff --git a/docs/recipes/package.json b/docs/recipes/package.json index 29383b75e4fe..46cb2ef57f16 100644 --- a/docs/recipes/package.json +++ b/docs/recipes/package.json @@ -5,6 +5,6 @@ "integration-test": "yarn --cwd integration-test/ test", "custom-gatherer-puppeteer-test": "yarn --cwd custom-gatherer-puppeteer/ test", "type-checking-test": "yarn --cwd type-checking/ test", - "test": "sh test-recipes.sh" + "test": "bash test-recipes.sh" } }