diff options
author | Ramón M. Gómez <ramongomez@us.es> | 2018-12-12 14:31:12 +0100 |
---|---|---|
committer | Ramón M. Gómez <ramongomez@us.es> | 2018-12-12 14:31:12 +0100 |
commit | b411a0f3eb40b3b946ee14876c263e940b8c9b64 (patch) | |
tree | 730f85a62f8f7ae9cd81032412158c48948cb52a /installer/opengnsys_installer.sh | |
parent | 01f4ee0ba0377b096c3c3ec2e47bd33755eb82c7 (diff) |
#886: Backward-compatible with JQ version 1.4
Diffstat (limited to 'installer/opengnsys_installer.sh')
-rwxr-xr-x | installer/opengnsys_installer.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/opengnsys_installer.sh b/installer/opengnsys_installer.sh index 883ef19e..0e93d92d 100755 --- a/installer/opengnsys_installer.sh +++ b/installer/opengnsys_installer.sh @@ -1558,7 +1558,7 @@ function installationSummary() # de código o si no está incluida en el fichero de versión. if [ $REMOTE -eq 1 ] || [ -z "$(jq -r '.release' $VERSIONFILE)" ]; 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])') jq ".release=$REVISION" $VERSIONFILE | sponge $VERSIONFILE fi VERSION="$(jq -r '[.project, .version, .codename, .release] | join(" ")' $VERSIONFILE 2>/dev/null)" |