Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions bin/reinstall_chrome_beta_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions bin/reinstall_chrome_stable_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions bin/reinstall_msedge_beta_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 4 additions & 0 deletions bin/reinstall_msedge_dev_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down