Dernière activité 1740032296

Taken from https://gist.github.com/shakahl/d629dbe9d41f57699dba597929582c9f

anthony's Avatar anthony a révisé ce gist 1740032295. Aller à la révision

1 file changed, 0 insertions, 0 deletions

gistfile1.txt renommé en get_latest_release.sh

Fichier renommé sans modifications

anthony's Avatar anthony a révisé ce gist 1740032284. Aller à la révision

1 file changed, 6 insertions

gistfile1.txt(fichier créé)

@@ -0,0 +1,6 @@
1 + #!/bin/bash
2 + get_latest_release() {
3 + curl --silent "https://api.github.com/repos/$1/releases/latest" | # Get latest release from GitHub api
4 + grep '"tag_name":' | # Get tag line
5 + sed -E 's/.*"([^"]+)".*/\1/' # Pluck JSON value
6 + }
Plus récent Plus ancien