From 1264772ebb6c0cfd5f54677c81b69939997b4431 Mon Sep 17 00:00:00 2001 From: Augustus Mayo Date: Tue, 7 Nov 2023 07:22:26 -0600 Subject: [PATCH] Fix newline output in mgd update script (#4447) --- tools/update_maghemite.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/update_maghemite.sh b/tools/update_maghemite.sh index eebece1aa5..db7e482776 100755 --- a/tools/update_maghemite.sh +++ b/tools/update_maghemite.sh @@ -59,7 +59,7 @@ function update_mgd { fi echo "Updating Maghemite mgd from: $TARGET_COMMIT" set -x - echo "$OUTPUT\n$OUTPUT_LINUX" > $MGD_PATH + printf "$OUTPUT\n$OUTPUT_LINUX" > $MGD_PATH set +x }