Skip to content

Commit

Permalink
Fixes the install_minikube.sh script for non-Ubuntu OSes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ark-kun committed Aug 18, 2018
1 parent af0a2dc commit 15e3f3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing/install_minikube.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ sudo apt-get install -y \
curl \
software-properties-common

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | sudo apt-key add -

sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
"deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") \
$(lsb_release -cs) \
stable"

Expand Down

0 comments on commit 15e3f3f

Please sign in to comment.