1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

pin minikube version

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-01-11 08:46:57 -05:00
parent ace7a854fa
commit 8de634d32f
2 changed files with 5 additions and 5 deletions

View File

@ -126,7 +126,7 @@ jobs:
- bash: |
sudo apt-get update
sudo apt-get install libgconf-2-4 conntrack -y
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
curl -LO https://storage.googleapis.com/minikube/releases/v1.15.1/minikube-linux-amd64
sudo install minikube-linux-amd64 /usr/local/bin/minikube
sudo minikube start --driver=none
# Although the kube and minikube config files are in placed $HOME they are owned by root

View File

@ -3,10 +3,10 @@ case $1 in
find ~/Library/Logs/Lens -type f -name *.log -delete
;;
linux)
find ~/.config/Lens -type f -name *.log -delete
find ~/.config/Logs/Lens -type f -name *.log -delete
;;
win)
find %APPDATA%/Lens -type f -name *.log -delete
find %APPDATA%/Logs/Lens -type f -name *.log -delete
;;
esac
@ -19,10 +19,10 @@ if [ $? -ne 0 ]; then
find ~/Library/Logs/Lens -type f -name *.log -exec cat >&2 {} \;
;;
linux)
find ~/.config/Lens -type f -name *.log -exec cat >&2 {} \;
find ~/.config/Logs/Lens -type f -name *.log -exec cat >&2 {} \;
;;
win)
find %APPDATA%/Lens -type f -name *.log -exec cat >&2 {} \;
find %APPDATA%/Logs/Lens -type f -name *.log -exec cat >&2 {} \;
;;
esac