2023-11-27 02:41:13 -06:00
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
|
|
|
|
$host.ui.WriteErrorLine("[BUILD] build system")
|
2024-05-12 07:47:09 -05:00
|
|
|
& cargo run --manifest-path build_system/Cargo.toml -- $args
|
2023-11-27 02:41:13 -06:00
|
|
|
if ($LASTEXITCODE -ne 0) {
|
|
|
|
exit $LASTEXITCODE
|
|
|
|
}
|