Revert "Add newline to local modifications warning"

This reverts commit ff656365d2.
This commit is contained in:
William Wernert
2021-07-12 09:28:24 -04:00
parent ff656365d2
commit f3ecdf21bf

View File

@@ -199,8 +199,7 @@ 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."
echo "(Check ${DEFAULT_SALT_DIR} for original copy):"
echo "Potentially breaking changes found in the following files (check ${DEFAULT_SALT_DIR} for original copy):"
for file_str in "${local_mod_arr[@]}"; do
echo " $file_str"
done