From 98c3b93c3d6e3e86988b9f916ebdfb7b4b6330c0 Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Tue, 29 Jul 2025 13:57:47 +0200 Subject: [PATCH] Include build type in build dir name --- configure.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ps1 b/configure.ps1 index edeb51cf..739a47a1 100644 --- a/configure.ps1 +++ b/configure.ps1 @@ -25,7 +25,7 @@ if (-not $env:BUILD_TYPE) { # Set variables $EXECTOS_SOURCE_DIR = (Get-Location).Path -$EXECTOS_BINARY_DIR = "build-$($ARCH)-xtchain" +$EXECTOS_BINARY_DIR = "build-$($ARCH)-$($env:BUILD_TYPE.ToLower())" # Create directories if needed if ($EXECTOS_SOURCE_DIR -eq (Get-Location).Path) {