From 9b83df4c7d6c8e9939592c169882ba886485e1f1 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Wed, 5 Jan 2022 19:06:11 +0100 Subject: [PATCH] [build] Fixed paths to version script for Fastlane 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 8abdd60aec..3057db5bc9 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') + lane_context[SharedValues::BUILD_NUMBER] = sh('../../tools/unix/version.sh ios_build') end private_lane :generate_testflight_changelog do