mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-12 23:31:38 -07:00
16 lines
279 B
PowerShell
16 lines
279 B
PowerShell
Clear-Host
|
|
|
|
$path_root = git rev-parse --show-toplevel
|
|
|
|
if ($IsWindows) {
|
|
$devshell = Join-Path $path_root 'scripts/helpers/devshell.ps1'
|
|
& $devshell -arch amd64
|
|
}
|
|
|
|
Push-Location $path_root
|
|
|
|
$build_bat = Join-Path $path_root 'build.bat'
|
|
& $build_bat @args
|
|
|
|
Pop-Location
|