From f3ecdf21bf93d22a1c5ee49ab61db44b010cfab0 Mon Sep 17 00:00:00 2001 From: William Wernert Date: Mon, 12 Jul 2021 09:28:24 -0400 Subject: [PATCH] Revert "Add newline to local modifications warning" This reverts commit ff656365d2b4be8658a228828872840854e31bad. --- salt/common/tools/sbin/soup | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/salt/common/tools/sbin/soup b/salt/common/tools/sbin/soup index 8ca8681d3..a59c63ffe 100755 --- a/salt/common/tools/sbin/soup +++ b/salt/common/tools/sbin/soup @@ -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