Fix switching around the SOGO and ombi latest-version script changes.

This commit is contained in:
kjeld Schouten-Lebbing
2021-09-06 08:57:35 +02:00
parent e2e75719e9
commit 88379e200b
2 changed files with 7 additions and 1 deletions
-1
View File
@@ -1,7 +1,6 @@
#!/usr/bin/env bash
version=$(curl -sX GET "https://api.github.com/repos/Ombi-app/Ombi/releases" | jq --raw-output '.[0].tag_name')
version="${version#*Sogo-}"
version="${version#*v}"
version="${version#*release-}"
printf "%s" "${version}"
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
version=$(curl -sX GET "https://api.github.com/repos/inverse-inc/sogo/releases" | jq --raw-output '.[0].tag_name')
version="${version#*SOGo-}"
version="${version#*release-}"
version="${version#*v}"
printf "%s" "${version}"