cherry-pick(1.13): fix: do not assume basic tools on linux when intalling channels (#7793) (#7893)

This commit is contained in:
Dmitry Gozman 2021-07-28 16:19:12 -07:00 committed by GitHub
parent 4e0ce9ac87
commit 6657752b9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 0 deletions

View file

@ -14,6 +14,10 @@ if dpkg --get-selections | grep -q "^google-chrome-beta[[:space:]]*install$" >/d
$maybesudo apt-get remove -y google-chrome-beta
fi
if ! command -v wget >/dev/null; then
$maybesudo apt-get install -y wget
fi
# 2. download chrome beta from dl.google.com and install it.
cd /tmp
wget https://dl.google.com/linux/direct/google-chrome-beta_current_amd64.deb

View file

@ -15,6 +15,9 @@ if dpkg --get-selections | grep -q "^google-chrome[[:space:]]*install$" >/dev/nu
$maybesudo apt-get remove -y google-chrome
fi
if ! command -v wget >/dev/null; then
$maybesudo apt-get install -y wget
fi
# 2. download chrome stable from dl.google.com and install it.
cd /tmp

View file

@ -14,6 +14,10 @@ if dpkg --get-selections | grep -q "^microsoft-edge-beta[[:space:]]*install$" >/
$maybesudo apt-get remove -y microsoft-edge-beta
fi
if ! command -v curl >/dev/null; then
$maybesudo apt-get install -y curl
fi
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > /tmp/microsoft.gpg
$maybesudo install -o root -g root -m 644 /tmp/microsoft.gpg /etc/apt/trusted.gpg.d/
$maybesudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list'

View file

@ -14,6 +14,10 @@ if dpkg --get-selections | grep -q "^microsoft-edge-dev[[:space:]]*install$" >/d
$maybesudo apt-get remove -y microsoft-edge-dev
fi
if ! command -v curl >/dev/null; then
$maybesudo apt-get install -y curl
fi
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > /tmp/microsoft.gpg
$maybesudo install -o root -g root -m 644 /tmp/microsoft.gpg /etc/apt/trusted.gpg.d/
$maybesudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list'