Add newline to local modifications warning

This commit is contained in:
William Wernert
2021-07-12 09:22:22 -04:00
parent ea7c09bb00
commit ff656365d2

View File

@@ -199,7 +199,8 @@ check_local_mods() {
done< <(find $salt_local -type f -print0)
if [[ ${#local_mod_arr} -gt 0 ]]; then
echo "Potentially breaking changes found in the following files (check ${DEFAULT_SALT_DIR} for original copy):"
echo "Potentially breaking changes found in the following files."
echo "(Check ${DEFAULT_SALT_DIR} for original copy):"
for file_str in "${local_mod_arr[@]}"; do
echo " $file_str"
done