From 57c7bd7130771093e8cbb22f217147e59dcd59ef Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 1 Oct 2024 11:53:31 +0200 Subject: [PATCH] Fix non-functioning `gsudo` detection --- scripts/Common/Scripts/Operations.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Common/Scripts/Operations.ps1 b/scripts/Common/Scripts/Operations.ps1 index 498743ab..72cf2e75 100644 --- a/scripts/Common/Scripts/Operations.ps1 +++ b/scripts/Common/Scripts/Operations.ps1 @@ -157,7 +157,7 @@ $null = New-Module { } } - if (-not (Test-Command "gsudo")) { + if (-not (Test-Command "gsudo.exe")) { Install-ChocoPackage gsudo; refreshenv; continue;