Skip to content

Commit

Permalink
Fix archive file name in get-sqlitebiter.ps1 script: #102
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Feb 10, 2024
1 parent d86ce6c commit e8418d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/get-sqlitebiter.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$package = "sqlitebiter"
$latest_release = Invoke-WebRequest https://github.com/thombashi/$package/releases/latest -Headers @{"Accept"="application/json"} | ConvertFrom-Json
$version = $latest_release.tag_name
$archive = "sqlitebiter_win_x64.zip"
$archive = "sqlitebiter_windows_amd64.zip"

wget https://github.com/thombashi/$package/releases/download/$version/$archive -OutFile $archive
Expand-Archive -Path $archive -DestinationPath .
Expand Down

0 comments on commit e8418d5

Please sign in to comment.