summaryrefslogtreecommitdiffstats
path: root/installer/opengnsys_update.sh
diff options
context:
space:
mode:
authorRamón M. Gómez <ramongomez@us.es>2020-06-15 16:53:43 +0200
committerRamón M. Gómez <ramongomez@us.es>2020-06-15 16:53:43 +0200
commit1d1e06d319e3ba52619d4c7d7f3f790e675439d7 (patch)
tree24d345705f00e0045612a63bdb331245c21a05fe /installer/opengnsys_update.sh
parent9fb80aa5ebd253f2267b73095ac0a4614e93bf0b (diff)
parent828277b3fe7723fd855a1394d718f2e9b0be9730 (diff)
#983: Merge branch `v1.1.1c` into `master`.
Diffstat (limited to 'installer/opengnsys_update.sh')
-rwxr-xr-xinstaller/opengnsys_update.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/installer/opengnsys_update.sh b/installer/opengnsys_update.sh
index b4159795..aa981c0a 100755
--- a/installer/opengnsys_update.sh
+++ b/installer/opengnsys_update.sh
@@ -182,7 +182,7 @@ function autoConfigure()
# Choose an available version to update.
function chooseVersion()
{
- local RELEASES DOWNLOADS INSTVERSION INSTRELEASE
+ local RELEASES DOWNLOADS INSTVERSION INSTRELEASE RELDATE
# Development branch.
BRANCH="master"
@@ -197,10 +197,10 @@ function chooseVersion()
# Fetch tags (releases) data from GitHub.
while read -pe TAG URL; do
if [[ $TAG =~ ^opengnsys- ]]; then
- [ "${TAG#opengnsys-}" \< "${INSTVERSION%pre}" ] && break
- RELEASES+=( "${TAG}" )
- DOWNLOADS+=( "$URL" )
- #RELDATE=$(curl -s "$URL" | jq -r '.commit.committer.date | split("-") | join("")[:8]')
+ [ "${TAG#opengnsys-}" \< "${INSTVERSION%pre}" ] && continue
+ RELDATE=$(curl -s "$URL" | jq -r '.commit.committer.date | split("-") | join("")[:8]')
+ RELEASES+=( "${TAG} ($RELDATE)" )
+ DOWNLOADS+=( "$URL" )
fi
done <<< $(curl -s "$API_URL/../../tags" | jq -r '.[] | .name+" "+.commit.url')
# Add development (master) branch.
@@ -210,10 +210,10 @@ function chooseVersion()
if [ ${#RELEASES[@]} -gt 1 ]; then
echo "Installed version: $INSTVERSION $INSTRELEASE"
echo "Versions available for update (\"$BRANCH\" is the latest development branch):"
- PS3="Enter a number: "
+ PS3="Enter a number (CTRL-C to exit): "
select opt in "${RELEASES[@]}"; do
if [ -n "$opt" ]; then
- BRANCH="$opt"
+ BRANCH="${opt%% *}"
API_URL="${DOWNLOADS[REPLY-1]}"
break
fi