xbp 10.15.4

XBP is a zero-config build pack that can also interact with proxies, kafka, sockets, synthetic monitors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$ErrorActionPreference = "Stop"

$BinName = "xbp.exe"
$BuildPath = Join-Path (Resolve-Path ".") "target\release\$BinName"
$InstallDir = Join-Path $HOME ".cargo\bin"

cargo build --release

if (-not (Test-Path $BuildPath)) {
    throw "Build failed: $BuildPath not found."
}

New-Item -ItemType Directory -Force -Path $InstallDir | Out-Null
Copy-Item -Force $BuildPath (Join-Path $InstallDir $BinName)

Write-Host "Installed $BinName to $InstallDir"
Write-Host "Ensure $InstallDir is on your PATH."