diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 623c4d3395..88aadfd87b 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -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 diff --git a/scripts/integration.sh b/scripts/integration.sh index 508d36fe0d..122d916b3e 100755 --- a/scripts/integration.sh +++ b/scripts/integration.sh @@ -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