Files
goaiapi/scripts/build.ps1
2026-06-01 22:05:11 +08:00

13 lines
382 B
PowerShell
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 编译脚本(位于 scripts/):源码在 src/go/,产物输出到 build/relay.exe
$ErrorActionPreference = 'Stop'
$root = Split-Path $PSScriptRoot -Parent # 仓库根目录scripts/ 的上一级)
$out = Join-Path $root 'build\relay.exe'
Push-Location (Join-Path $root 'src\go')
try {
go build -o $out .
Write-Host "Built: $out"
} finally {
Pop-Location
}