This commit is contained in:
2025-01-06 11:59:08 -05:00
parent 812cea7e73
commit 4cdff84bb0
3 changed files with 53 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
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