From 73c5ea082c7daeac533937af8ed35b51b7c0b9c8 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 11 Jan 2024 16:21:14 -0700 Subject: [PATCH] fix(sd+windows): correct install dir (had typo) --- sd/install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sd/install.ps1 b/sd/install.ps1 index 526c539..3874041 100644 --- a/sd/install.ps1 +++ b/sd/install.ps1 @@ -45,7 +45,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd")) { # Settle unpacked archive into place Write-Output "Install Location: $pkg_src_cmd" New-Item "$pkg_src_bin" -ItemType Directory -Force | Out-Null - Move-Item -Path "b\*\release\sd.exe" -Destination "$pkg_src_bin" + Move-Item -Path "sd-*\sd.exe" -Destination "$pkg_src_bin" # Exit tmp Pop-Location }