Skip to content

Commit a3b8ba3

Browse files
authored
Double quote array expansion
1 parent b620263 commit a3b8ba3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

utilities/update_versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ do
148148
done
149149

150150
echo -e "\n${BOLD}Validating module folder mapping${NC}"
151-
for item in ${!module_folder_map[@]}
151+
for item in "${!module_folder_map[@]}"
152152
do
153153
if [ "${item}" != "." ] && [ "${module_version_map[${item}]}" == "" ]; then
154154
echo -e "${RED}WARNING:${NC} Ignoring \"${module_folder_map[${item}]}\" folder, as there is no corresponding module found in the root pom"

0 commit comments

Comments
 (0)