We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6b8dda commit f992793Copy full SHA for f992793
utilities/update_versions.sh
@@ -228,7 +228,11 @@ for item in ${modules[*]}; do
228
# echo -e "new_base_version=${new_base_version}, new_qualifier=${new_qualifier}, new_snapshot=${new_snapshot}"
229
230
echo -e "Updating module ${BOLD}${module}${NC} in folder ${folder} from version ${RED}${old_version}${NC} to ${GREEN}${new_version}${NC}"
231
- module_suffix=${module##google-cloud-}
+ if [ "${module}" == "google-cloud" ]; then
232
+ module_suffix="cloud"
233
+ else
234
+ module_suffix="${module##google-cloud-}"
235
+ fi
236
237
# Where the actual version changing happens (the only mutative operations in the script).
238
0 commit comments