Skip to content

Commit

Permalink
fix: Correct the windows installer path
Browse files Browse the repository at this point in the history
  • Loading branch information
PurpleBooth authored Oct 31, 2024
1 parent 4de6a3e commit 57f23e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ New-Item -ItemType Directory -Force -Path $InstallDir | Out-Null

foreach ($Binary in $Binaries) {
Write-Host "📥 Downloading $Binary..."
$BinaryUrl = "https://github.com/PurpleBooth/git-mit/releases/latest/download/${Binary}${Arch}"
$BinaryUrl = "https://github.com/PurpleBooth/git-mit/releases/latest/download/${Binary}-${Arch}"
$HashUrl = "${BinaryUrl}.sha256"

# Download files
Expand Down

0 comments on commit 57f23e7

Please sign in to comment.