From e35618485433d01d6cecdf95347efa2e7f02e408 Mon Sep 17 00:00:00 2001 From: Scott Dickerson Date: Tue, 10 Sep 2024 12:03:40 -0400 Subject: [PATCH] :book: Fix wsl docs curl commands (#2082) The WSL docs example curl commands to download the shim scripts needed to be updated follow redirects as necessary and to download to a file instead of writing to sysout. Signed-off-by: Scott J Dickerson --- hack/wsl/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/wsl/README.md b/hack/wsl/README.md index 2bbed7923..62d96e543 100644 --- a/hack/wsl/README.md +++ b/hack/wsl/README.md @@ -162,7 +162,7 @@ the path `/usr/local/bin` is included and is a good location to put the scripts. windows binary: ``` - curl https://raw.githubusercontent.com/konveyor/tackle2-ui/main/hack/wsl/shim_scripts/minikube.sh + curl -L https://raw.githubusercontent.com/konveyor/tackle2-ui/main/hack/wsl/shim_scripts/minikube.sh -o minikube.sh sudo install -m 777 minikube.sh /usr/local/bin/minikube ``` @@ -170,7 +170,7 @@ the path `/usr/local/bin` is included and is a good location to put the scripts. embedded in minikube `minikube kubectl --`: ``` - curl https://raw.githubusercontent.com/konveyor/tackle2-ui/main/hack/wsl/shim_scripts/kubectl.sh + curl -L https://raw.githubusercontent.com/konveyor/tackle2-ui/main/hack/wsl/shim_scripts/kubectl.sh -o kubectl.sh sudo install -m 777 kubectl.sh /usr/local/bin/kubectl ```