11 lines
299 B
PowerShell
11 lines
299 B
PowerShell
Set-StrictMode -Version Latest
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
$repoRoot = Split-Path -Parent $MyInvocation.MyCommand.Path
|
|
Set-Location $repoRoot
|
|
|
|
$env:GOCACHE = Join-Path $repoRoot ".cache/go-build"
|
|
$outputPath = Join-Path $repoRoot "tools/sow-toolkit.exe"
|
|
|
|
go build -o $outputPath ./cmd/nwn-tool
|