Skip to content

Commit ea39cfd

Browse files
committed
fix(docs): replace curl command with PowerShell-compatible Invoke-WebRequest
Signed-off-by: ShigrafS <[email protected]>
1 parent 6e31df4 commit ea39cfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/contribute/source/os/windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Enter-VsDevShell -VsInstallPath $vsPath -SkipAutomaticLocation -DevCmdArguments
3939
4040
# Download our pre-built LLVM 16 binary
4141
$llvm = "LLVM-16.0.6-win64-MultiThreadedDLL.zip"
42-
curl -sLO https://github.com/WasmEdge/llvm-windows/releases/download/llvmorg-16.0.6/LLVM-16.0.6-win64-MultiThreadedDLL.zip -o $llvm
42+
Invoke-WebRequest -Uri https://github.com/WasmEdge/llvm-windows/releases/download/llvmorg-16.0.6/LLVM-16.0.6-win64-MultiThreadedDLL.zip -OutFile LLVM-16.0.6-win64-MultiThreadedDLL.zip
4343
Expand-Archive -Path $llvm
4444
4545
# Set LLVM environment

0 commit comments

Comments
 (0)