mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-13 07:35:33 +03:00
17 lines
472 B
Bash
17 lines
472 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
# 1. make sure to remove old stable if any.
|
||
|
if dpkg --get-selections | grep -q "^google-chrome[[:space:]]*install$" >/dev/null; then
|
||
|
sudo apt-get remove -y google-chrome
|
||
|
fi
|
||
|
|
||
|
|
||
|
# 2. download chrome stable from dl.google.com and install it.
|
||
|
cd /tmp
|
||
|
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
||
|
sudo apt-get install -y ./google-chrome-stable_current_amd64.deb
|
||
|
rm -rf ./google-chrome-stable_current_amd64.deb
|
||
|
cd -
|