Skip to content

Commit

Permalink
Update installchrome.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
sirredbeard authored Sep 27, 2018
1 parent 8c3f11e commit fa5f9c4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions linux_files/installchrome.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
#!/bin/bash

CURDIR=$(pwd)
TMPDIR=$(mktemp -d)
cd $TMPDIR

wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main " > /etc/apt/sources.list.d/googlechrome.list'
sudo apt upgrade -y
sudo apt update -y
sudo apt install google-chrome-stable

cd $CURDIR
rm -r $TMPDIR

0 comments on commit fa5f9c4

Please sign in to comment.