From 6ca11839dbb8187f6a07ddc991da422d3c5d4b3b Mon Sep 17 00:00:00 2001 From: Roman Tsisyk Date: Sun, 24 Jul 2022 09:38:49 +0300 Subject: [PATCH] [ios] Remove special characters from TestFlight changelog Signed-off-by: Roman Tsisyk --- xcode/fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcode/fastlane/Fastfile b/xcode/fastlane/Fastfile index 71a11d8451..07447bac6b 100644 --- a/xcode/fastlane/Fastfile +++ b/xcode/fastlane/Fastfile @@ -50,7 +50,7 @@ platform :ios do end private_lane :generate_testflight_changelog do - changelog = sh('git --no-pager show -s --format=%s%n%n%b HEAD') + changelog = sh('git --no-pager show -s --format=%s%n%n%b HEAD|tr -dc \'\0-\177\'') lane_context[SharedValues::FL_CHANGELOG] = changelog end