We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e2b585 commit f76ebfbCopy full SHA for f76ebfb
1 file changed
update.sh
@@ -114,6 +114,8 @@ for version in "${versions[@]}"; do
114
baseuri=$(get_config "${parentpath}" "baseuri")
115
update=$(in_versions_to_update "${version}")
116
117
+ [ "${update}" -eq 0 ] && info "Updating version ${version}..."
118
+
119
# Get supported variants according the target architecture
120
# See details in function.sh
121
IFS=' ' read -ra variants <<<"$(get_variants "${parentpath}")"
@@ -122,7 +124,6 @@ for version in "${versions[@]}"; do
122
124
add_stage "${baseuri}" "${version}" "default"
123
125
126
if [ "${update}" -eq 0 ]; then
- info "Updating version ${version}..."
127
update_node_version "${baseuri}" "${versionnum}" "${parentpath}/Dockerfile.template" "${version}/Dockerfile" &
128
fi
129
0 commit comments