mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
8 lines
260 B
PowerShell
8 lines
260 B
PowerShell
# TODO(@paperdave): finalize this script out
|
|
$ZigVersion = "0.12.0-dev.1297+a9e66ed73"
|
|
|
|
$Url = "https://ziglang.org/builds/zig-windows-x86_64-${ZigVersion}.zip"
|
|
|
|
Invoke-WebRequest $Url -OutFile .cache\zig-${ZigVersion}.zip
|
|
Expand-Archive zig-${ZigVersion}.zip
|