Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit 21bd6f2

Browse files
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
1 parent 8e6b057 commit 21bd6f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/features/webdriver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ARCH=$(arch)
2424
# Install The Chrome Web Driver & Dusk Utilities
2525
if [[ "$ARCH" != "aarch64" ]]; then
2626
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O /tmp/chrome.deb
27-
dpkg -i /tmp/chrome.deb
27+
apt-get install -y /tmp/chrome.deb
2828
rm -f /tmp/chrome.deb
2929
fi
3030

0 commit comments

Comments
 (0)