From 21bd6f2f7ef00a7714906c4a95ed087b7ff99cef Mon Sep 17 00:00:00 2001 From: Adrien Smith Date: Fri, 26 Apr 2024 21:25:52 -0600 Subject: [PATCH] Reconfigure APT after manual installation of google-chrome-stable (#1959) * fix: reconfigure apt after manual installation of google-chrome-stable * fix: use apt-get instead of dpkg to install Chrome deb --- scripts/features/webdriver.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/features/webdriver.sh b/scripts/features/webdriver.sh index d2f2c0460..0b9ecdcf2 100755 --- a/scripts/features/webdriver.sh +++ b/scripts/features/webdriver.sh @@ -24,7 +24,7 @@ ARCH=$(arch) # Install The Chrome Web Driver & Dusk Utilities if [[ "$ARCH" != "aarch64" ]]; then wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O /tmp/chrome.deb - dpkg -i /tmp/chrome.deb + apt-get install -y /tmp/chrome.deb rm -f /tmp/chrome.deb fi