Skip to content

Commit

Permalink
fix: change holoiso regexp to match shorter release tags
Browse files Browse the repository at this point in the history
  • Loading branch information
philclifford committed Jun 24, 2024
1 parent e052374 commit 078b867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickget
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ function editions_haiku() {
}

function releases_holoiso() {
web_pipe "https://github.com/HoloISO/releases/releases/latest" | grep -o -e 'releases/tag/[[:digit:]]\+\.[[:digit:]]\+\.[[:digit:]]' | head -n 1 | cut -d'/' -f 3
web_pipe "https://github.com/HoloISO/releases/releases/latest" | grep -o -e 'releases/tag/[[:digit:]]\+\(\.[[:digit:]]\+\)*' | head -n 1 | cut -d'/' -f 3
}

function releases_kali() {
Expand Down

0 comments on commit 078b867

Please sign in to comment.