rust/y.ps1
bjorn3 cfc919f532 Use cargo in y.sh
This will allow adding dependencies to the build system in the future.
2024-05-12 12:59:10 +00:00

8 lines
194 B
PowerShell
Executable File

$ErrorActionPreference = "Stop"
$host.ui.WriteErrorLine("[BUILD] build system")
& cargo run --manifest-path build_system/Cargo.toml -- $args
if ($LASTEXITCODE -ne 0) {
exit $LASTEXITCODE
}