From 564f6f60730dbc134932009e058a1e1091bbfbfc Mon Sep 17 00:00:00 2001 From: Adrien Smith Date: Fri, 5 Apr 2024 15:07:57 -0600 Subject: [PATCH] fix: use apt-get instead of dpkg to install Chrome deb --- scripts/features/webdriver.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/features/webdriver.sh b/scripts/features/webdriver.sh index 1107b17b2..0b9ecdcf2 100755 --- a/scripts/features/webdriver.sh +++ b/scripts/features/webdriver.sh @@ -24,8 +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 -y --fix-broken install + apt-get install -y /tmp/chrome.deb rm -f /tmp/chrome.deb fi