From 277054e982a68483b527816de9b54615c15baf78 Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Mon, 23 Feb 2026 02:38:20 +0100 Subject: [PATCH] windows build 5 --- build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.ps1 b/build.ps1 index e346db1..66f68a4 100644 --- a/build.ps1 +++ b/build.ps1 @@ -28,7 +28,7 @@ $vulkanBasePath = "C:\VulkanSDK" $folders = Get-ChildItem -Path $vulkanBasePath -Directory # Sort the folders by version and select the latest one -$latestVulkanVersion = $folders | Sort-Object { [Version]$_ .Name } -Descending | Select-Object -First 1 +$latestVulkanVersion = $folders | Sort-Object { [Version]$_.Name } -Descending | Select-Object -First 1 # Store the latest version folder name and combine it with the base path to get the full path to Include $vulkanSDKPath = Join-Path -Path $vulkanBasePath -ChildPath (Join-Path -Path $latestVulkanVersion.Name -ChildPath "Include")