From 1bc4269f19a20297b3f2004fcd12fc69b30b0b6a Mon Sep 17 00:00:00 2001 From: Aaron Meese Date: Sat, 15 Jul 2023 10:21:19 -0400 Subject: [PATCH] Fixed Windows install commands `curl` does not have a `-k` or `-L` flag on Windows, these slightly simplified commands work perfectly well and accomplish the same task. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f19cc7777..3fb7b7792 100644 --- a/README.md +++ b/README.md @@ -94,12 +94,12 @@ horusec version ### **Windows** - **amd64** ```sh - curl -k "https://github.com/ZupIT/horusec/releases/latest/download/horusec_win_amd64.exe" -o "./horusec.exe" -L + curl "https://github.com/ZupIT/horusec/releases/latest/download/horusec_win_amd64.exe" -o "./horusec.exe" ``` - **arm64** ```sh - curl -k "https://github.com/ZupIT/horusec/releases/latest/download/horusec_win_arm64.exe" -o "./horusec.exe" -L + curl "https://github.com/ZupIT/horusec/releases/latest/download/horusec_win_arm64.exe" -o "./horusec.exe" ``` #### **Check the installation**