Skip to content

Commit

Permalink
fix: use apt-get instead of dpkg to install Chrome deb
Browse files Browse the repository at this point in the history
  • Loading branch information
PanisSupraOmnia committed Apr 5, 2024
1 parent 3eea595 commit 564f6f6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/features/webdriver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 564f6f6

Please sign in to comment.