From 657c72934ab45eded19b3cfe377abfcee38d8d5a Mon Sep 17 00:00:00 2001 From: Kirill Artemov Date: Sat, 17 May 2025 17:04:25 +0200 Subject: [PATCH] Fixed script --- dist/platforms/windows/entrypoint.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/platforms/windows/entrypoint.ps1 b/dist/platforms/windows/entrypoint.ps1 index 43e9b8e6..81d2bf0c 100644 --- a/dist/platforms/windows/entrypoint.ps1 +++ b/dist/platforms/windows/entrypoint.ps1 @@ -13,7 +13,7 @@ Get-Process -Name regsvr32 | ForEach-Object { Stop-Process -Id $_.Id -Force } # Setup Git Credentials . "c:\steps\set_gitcredential.ps1" -if ($env:ENABLE_GPU -e "true") { +if ($env:ENABLE_GPU -eq "true") { # Install LLVMpipe software graphics driver . "c:\steps\install_llvmpipe.ps1" }