From 634a77f1fc98457c89ee1b4691f6aa1446064bc3 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Fri, 7 Jan 2022 08:08:40 +0100 Subject: [PATCH] [build] Fixed fastlane build error Signed-off-by: Alexander Borsuk --- xcode/fastlane/Fastfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xcode/fastlane/Fastfile b/xcode/fastlane/Fastfile index 097619041c..53e6e99629 100644 --- a/xcode/fastlane/Fastfile +++ b/xcode/fastlane/Fastfile @@ -45,8 +45,8 @@ platform :ios do end private_lane :generate_version do - lane_context[SharedValues::VERSION_NUMBER] = sh('../../tools/unix/version.sh ios_version') - lane_context[SharedValues::BUILD_NUMBER] = sh('../../tools/unix/version.sh ios_build') + lane_context[SharedValues::VERSION_NUMBER] = sh('../../tools/unix/version.sh ios_version').strip + lane_context[SharedValues::BUILD_NUMBER] = sh('../../tools/unix/version.sh ios_build').strip end private_lane :generate_testflight_changelog do