Skip to content

Commit 3355fc9

Browse files
authored
fix(docs): replace curl command with PowerShell-compatible Invoke-WebRequest (#275)
Signed-off-by: ShigrafS <shigrafsalik@proton.me>
1 parent 75741b9 commit 3355fc9

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
4343
Expand-Archive -Path $llvm
4444
4545
# Set LLVM environment

0 commit comments

Comments
 (0)