mirror of
https://github.com/Slug-Boi/cocommit.git
synced 2026-05-13 12:45:47 +00:00
8 lines
231 B
PowerShell
8 lines
231 B
PowerShell
$binaryUrl = "https://github.com/Slug-Boi/cocommit/blob/main/installer/bin/install-win"
|
|
$outputPath = "install-win.exe"
|
|
|
|
# Download the binary
|
|
Invoke-WebRequest -Uri $binaryUrl -OutFile $outputPath
|
|
|
|
# Run the binary
|
|
& .\$outputPath |