From 9d79cc89cb39df675484602e91c7178a18a6456e Mon Sep 17 00:00:00 2001 From: Jack Franklin Date: Tue, 30 Jun 2020 15:52:53 +0100 Subject: [PATCH] chore: fix Firefox install checker (#6129) I think when the FF version changes this check breaks - let's just make it check that a version installed rather than the specific version else this will happen on a continuing basis. --- scripts/test-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-install.sh b/scripts/test-install.sh index 76703abcb492f..c9262104e70b6 100755 --- a/scripts/test-install.sh +++ b/scripts/test-install.sh @@ -22,7 +22,7 @@ cd $TMPDIR PUPPETEER_PRODUCT=firefox npm install --loglevel silent "${tarball}" node --eval="require('puppeteer')" rm "${tarball}" -ls $TMPDIR/node_modules/puppeteer/.local-firefox/linux-79.0a1/firefox/firefox +ls $TMPDIR/node_modules/puppeteer/.local-firefox/ # Again for puppeteer-core cd $ROOTDIR