Skip to content

Instantly share code, notes, and snippets.

@simonkowallik
Last active June 23, 2018 04:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simonkowallik/4be69121a99ebaf1b37ca063c533c798 to your computer and use it in GitHub Desktop.
Save simonkowallik/4be69121a99ebaf1b37ca063c533c798 to your computer and use it in GitHub Desktop.
download latest release from github
function download_latest_github_release() {
release=$(curl --silent "https://api.github.com/repos/$1/releases/latest" |
grep -Po '"tag_name": "\K.*?(?=")')
curl -sLO https://github.com/$1/archive/${release}.tar.gz
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment