From 2918d722a0e32d53009b3e0993e1a7569de7e7ae Mon Sep 17 00:00:00 2001 From: Hunter Gregory <42728408+huntergregory@users.noreply.github.com> Date: Wed, 4 Dec 2024 18:47:12 -0800 Subject: [PATCH] docs(quick install): curl needs redirect flag Signed-off-by: Hunter Gregory <42728408+huntergregory@users.noreply.github.com> --- cmd/policy-assistant/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/policy-assistant/README.md b/cmd/policy-assistant/README.md index cb9125f1..48b1344a 100644 --- a/cmd/policy-assistant/README.md +++ b/cmd/policy-assistant/README.md @@ -36,10 +36,11 @@ verdict walkthrough: Download the latest `policy-assistant` release either from GitHub ([web page](https://github.com/kubernetes-sigs/network-policy-api/releases/v0.0.1-policy-assistant)) or via these bash commands: ```bash -curl -O https://github.com/kubernetes-sigs/network-policy-api/releases/download/v0.0.1-policy-assistant/policy-assistant_linux_amd64.tar.gz +curl -LO https://github.com/kubernetes-sigs/network-policy-api/releases/download/v0.0.1-policy-assistant/policy-assistant_linux_amd64.tar.gz # optionally verify check sum tar -xvf policy-assistant_linux_amd64.tar.gz -./policy-assistant analyze --help +sudo mv policy-assistant_linux_amd64/policy-assistant /usr/bin/policy-assistant +policy-assistant analyze --help ``` Alternatively, [install from source](#make-from-source).