Fix downloading the latest release

The latest release comes first
This commit is contained in:
MoetaYuko 2023-09-28 14:11:41 +08:00 committed by GitHub
parent b0bc460e9d
commit 47ebfed562
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ function download_binary() {
echo "Getting latest release..."
# TODO use "latest" tag
url=$(curl -s "https://api.github.com/repos/morantron/tmux-fingers/releases" | grep browser_download_url | tail -1 | grep -o https://.*x86_64)
url=$(curl -s "https://api.github.com/repos/morantron/tmux-fingers/releases" | grep browser_download_url | head -1 | grep -o https://.*x86_64)
echo "Downloading binary from $url"