fix(sd+windows): correct install dir (had typo)

This commit is contained in:
AJ ONeal
2024-01-11 16:21:14 -07:00
parent 16d108e3d5
commit 73c5ea082c

View File

@@ -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
}