From a473d9fbb590189ecb500f4cdc947b8e01281a84 Mon Sep 17 00:00:00 2001 From: Yahir Molina Date: Tue, 19 May 2026 23:26:37 -0600 Subject: [PATCH] fix: fixed an issue with the ps1 version of the fd installer, it tried to move the .exe file but cuouldn't find it due to not being declared in the script instruction --- fd/install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fd/install.ps1 b/fd/install.ps1 index d71335c..e758635 100644 --- a/fd/install.ps1 +++ b/fd/install.ps1 @@ -24,7 +24,7 @@ if (!(Test-Path -Path "$Env:USERPROFILE\.local\bin\$VERNAME")) { Write-Output "Unpacking $Env:USERPROFILE\Downloads\webi\$Env:WEBI_PKG_FILE" & tar xf "$Env:USERPROFILE\Downloads\webi\$Env:WEBI_PKG_FILE" # Move single binary into root of temporary folder - & Move-Item "$EXENAME" "$VERNAME" + & Move-Item "$Env:WEBI_PKG_FILE\$EXENAME" "$VERNAME" # Settle unpacked archive into place