[build] Fixed paths to version script for Fastlane

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2022-01-05 19:06:11 +01:00 committed by Alexander Borsuk
parent 11a67f11a9
commit 9b83df4c7d

View file

@ -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