From 7da6349a76a3a86949298b1c011e85694a562016 Mon Sep 17 00:00:00 2001 From: ShigrafS Date: Wed, 9 Jul 2025 17:41:32 +0530 Subject: [PATCH] fix(docs): replace curl command with PowerShell-compatible Invoke-WebRequest Signed-off-by: ShigrafS --- docs/contribute/source/os/windows.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contribute/source/os/windows.md b/docs/contribute/source/os/windows.md index b2adaee1..8b6a13e5 100644 --- a/docs/contribute/source/os/windows.md +++ b/docs/contribute/source/os/windows.md @@ -39,7 +39,7 @@ Enter-VsDevShell -VsInstallPath $vsPath -SkipAutomaticLocation -DevCmdArguments # Download our pre-built LLVM 16 binary $llvm = "LLVM-16.0.6-win64-MultiThreadedDLL.zip" -curl -sLO https://github.com/WasmEdge/llvm-windows/releases/download/llvmorg-16.0.6/LLVM-16.0.6-win64-MultiThreadedDLL.zip -o $llvm +Invoke-WebRequest -Uri https://github.com/WasmEdge/llvm-windows/releases/download/llvmorg-16.0.6/LLVM-16.0.6-win64-MultiThreadedDLL.zip -OutFile $llvm Expand-Archive -Path $llvm # Set LLVM environment