From 661a3538b422de984c2255f27205cff77b214b07 Mon Sep 17 00:00:00 2001 From: Stefan Ceriu Date: Thu, 22 Feb 2024 11:56:12 +0200 Subject: [PATCH] Attempt to fix multiline Testflight changelog --- ci_scripts/ci_common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci_scripts/ci_common.sh b/ci_scripts/ci_common.sh index 7ea590172..5ee5df819 100755 --- a/ci_scripts/ci_common.sh +++ b/ci_scripts/ci_common.sh @@ -85,8 +85,8 @@ generate_what_to_test_notes() { NOTES=$(git log --pretty='- %an: %s' "$LATEST_TAG"..HEAD) - echo "generate_what_to_test_notes: Generated notes:\n$NOTES" + echo "generate_what_to_test_notes: Generated notes:\n"$NOTES"" - echo $NOTES > $TESTFLIGHT_DIR_PATH/$TESTFLIGHT_NOTES_FILE_NAME + echo "$NOTES" > $TESTFLIGHT_DIR_PATH/$TESTFLIGHT_NOTES_FILE_NAME fi } \ No newline at end of file