Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-09-24 20:05:05 -04:00
parent 934cfe12ba
commit 7cd5ad3f9a
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

View File

@ -19,9 +19,9 @@ get_latest() {
local resp local resp
resp=$(curl -sSL -H "${AUTH_HEADER}" -H "${API_HEADER}" "${URI}/repos/${repo}/releases") resp=$(curl -sSL -H "${AUTH_HEADER}" -H "${API_HEADER}" "${URI}/repos/${repo}/releases")
local tag local tag
tag=$(echo "$resp" | jq -e --raw-output .[0].tag_name) tag=$(echo "$resp" | jq -e --raw-output .[0].tag_name || echo "null")
local name local name
name=$(echo "$resp" | jq -e --raw-output .[0].name) name=$(echo "$resp" | jq -e --raw-output .[0].name || echo "null")
if [[ "$tag" == "null" ]]; then if [[ "$tag" == "null" ]]; then
# get the latest tag # get the latest tag