Skip to content

Commit

Permalink
Remove sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
edreed committed Jun 12, 2021
1 parent 1545080 commit 344d380
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/integration/run-test-v2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ function cleanup {
trap cleanup EXIT

echo 'Installing minikube'
sudo mkdir -p /usr/local/bin/
mkdir -p /usr/local/bin/
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 \
&& sudo chmod +x /usr/local/bin/minikube
&& chmod +x /usr/local/bin/minikube

echo 'Starting minikube'
minikube start --driver=none --force-systemd --force
Expand Down
4 changes: 2 additions & 2 deletions test/sanity/run-test-v2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ function cleanup {
trap cleanup EXIT

echo 'Installing minikube'
sudo mkdir -p /usr/local/bin/
mkdir -p /usr/local/bin/
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 \
&& sudo chmod +x /usr/local/bin/minikube
&& chmod +x /usr/local/bin/minikube

echo 'Start minikube'
minikube start --driver=none --force-systemd --force
Expand Down

0 comments on commit 344d380

Please sign in to comment.