mirror of
https://github.com/cmz0228/hysteria-dev.git
synced 2025-06-08 13:29:53 +00:00
6 lines
141 B
PowerShell
6 lines
141 B
PowerShell
$env:GOOS = "windows"
|
|
go build -ldflags="-w -s" -o "hy_windows.exe" ./cmd
|
|
|
|
$env:GOOS = "linux"
|
|
go build -ldflags="-w -s" -o "hy_linux" ./cmd
|