From fc9ebdec989ec7f3526b411d5720efc35a26efa1 Mon Sep 17 00:00:00 2001 From: Vaggelis kavouras Date: Sun, 29 Dec 2024 00:08:04 +0200 Subject: [PATCH] fix: correct binary name duplication in PowerShell installation script - Removed redundant ".exe" suffix from binary names in install.ps1 to ensure unique and accurate naming for Windows binaries based on architecture. --- scripts/install.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install.ps1 b/scripts/install.ps1 index b411308..e25a82b 100644 --- a/scripts/install.ps1 +++ b/scripts/install.ps1 @@ -89,9 +89,9 @@ function Install-CursorModifier { # Look for Windows binary with our architecture $possibleNames = @( "cursor-id-modifier_windows_$($arch).exe", - "cursor-id-modifier_windows_$($arch).exe.exe", + "cursor-id-modifier_windows_$($arch).exe", "cursor-id-modifier_Windows_$($arch).exe", - "cursor-id-modifier_Windows_$($arch).exe.exe" + "cursor-id-modifier_Windows_$($arch).exe" ) $asset = $null