From 33bb4fd9e09fedd3f3333b08a55a4b69d5753e47 Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Mon, 23 Jun 2025 09:07:49 +0200 Subject: [PATCH] changedetection: fix: hermetic msedge (#5388) --- ct/changedetection.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ct/changedetection.sh b/ct/changedetection.sh index e9dd4c81f..d452ce26d 100644 --- a/ct/changedetection.sh +++ b/ct/changedetection.sh @@ -52,7 +52,8 @@ function update_script() { $STD /opt/browserless/node_modules/playwright-core/cli.js install --with-deps # Update Chrome separately, as it has to be done with the force option. Otherwise the installation of other browsers will not be done if Chrome is already installed. $STD /opt/browserless/node_modules/playwright-core/cli.js install --force chrome - $STD /opt/browserless/node_modules/playwright-core/cli.js install chromium firefox webkit msedge + $STD /opt/browserless/node_modules/playwright-core/cli.js install --force msedge + $STD /opt/browserless/node_modules/playwright-core/cli.js install chromium firefox webkit $STD npm run build --prefix /opt/browserless $STD npm run build:function --prefix /opt/browserless $STD npm prune production --prefix /opt/browserless