Skip to content

Commit

Permalink
Reconfigure APT after manual installation of google-chrome-stable (#1959
Browse files Browse the repository at this point in the history
)

* fix: reconfigure apt after manual installation of google-chrome-stable

* fix: use apt-get instead of dpkg to install Chrome deb
  • Loading branch information
PanisSupraOmnia committed Apr 27, 2024
1 parent 8e6b057 commit 21bd6f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/features/webdriver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 21bd6f2

Please sign in to comment.