summaryrefslogtreecommitdiffstats
path: root/installer/opengnsys_update.sh
diff options
context:
space:
mode:
authorRamón M. Gómez <ramongomez@us.es>2018-12-12 14:31:12 +0100
committerRamón M. Gómez <ramongomez@us.es>2018-12-12 14:31:12 +0100
commitb411a0f3eb40b3b946ee14876c263e940b8c9b64 (patch)
tree730f85a62f8f7ae9cd81032412158c48948cb52a /installer/opengnsys_update.sh
parent01f4ee0ba0377b096c3c3ec2e47bd33755eb82c7 (diff)
#886: Backward-compatible with JQ version 1.4
Diffstat (limited to 'installer/opengnsys_update.sh')
-rwxr-xr-xinstaller/opengnsys_update.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/opengnsys_update.sh b/installer/opengnsys_update.sh
index 8b56b549..34ef4b18 100755
--- a/installer/opengnsys_update.sh
+++ b/installer/opengnsys_update.sh
@@ -1080,7 +1080,7 @@ function updateSummary()
# Obtener revisión.
if [ $REMOTE -eq 1 ]; then
# Revisión: rAñoMesDía.Gitcommit (8 caracteres de fecha y 7 primeros de commit).
- REVISION=$(curl -s "$API_URL" | jq '"r" + (.commit.commit.committer.date | gsub("-"; "")[:8]) + "." + (.commit.sha[:7])')
+ REVISION=$(curl -s "$API_URL" | jq '"r" + (.commit.commit.committer.date | split("-") | join("")[:8]) + "." + (.commit.sha[:7])')
else
# Parámetro "release" del fichero JSON.
REVISION=$(jq -r '.release' $PROGRAMDIR/../doc/VERSION.json 2>/dev/null)