From f76ebfb93638f99611295653b5fceca1a36b0188 Mon Sep 17 00:00:00 2001 From: Laurent Goderre Date: Mon, 28 May 2018 11:16:47 -0400 Subject: [PATCH] Fixed the update not outputing the version numbers on update --- update.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/update.sh b/update.sh index 65d1867c02..45ba33e93f 100755 --- a/update.sh +++ b/update.sh @@ -114,6 +114,8 @@ for version in "${versions[@]}"; do baseuri=$(get_config "${parentpath}" "baseuri") update=$(in_versions_to_update "${version}") + [ "${update}" -eq 0 ] && info "Updating version ${version}..." + # Get supported variants according the target architecture # See details in function.sh IFS=' ' read -ra variants <<<"$(get_variants "${parentpath}")" @@ -122,7 +124,6 @@ for version in "${versions[@]}"; do add_stage "${baseuri}" "${version}" "default" if [ "${update}" -eq 0 ]; then - info "Updating version ${version}..." update_node_version "${baseuri}" "${versionnum}" "${parentpath}/Dockerfile.template" "${version}/Dockerfile" & fi fi