From aaad54a1cd6b72860623b90ccd00a4e872e4856a Mon Sep 17 00:00:00 2001 From: SBiOSoftWhare Date: Tue, 18 May 2021 15:51:25 +0200 Subject: [PATCH] buildRelease.sh: Make bundler operations in the cloned repository folder. --- Tools/Release/buildRelease.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Tools/Release/buildRelease.sh b/Tools/Release/buildRelease.sh index a405c203d..6fd269611 100755 --- a/Tools/Release/buildRelease.sh +++ b/Tools/Release/buildRelease.sh @@ -25,7 +25,7 @@ BUILD_NUMBER=$( date +%Y%m%d%H%M%S ) if [ -e $BUILD_DIR ]; then echo "Error: Folder ${BUILD_DIR} already exists" exit 1 -fi +fi # Fastlane update @@ -43,6 +43,14 @@ git clone $REPO_URL --depth=1 --branch $TAG cd $REPO_NAME +# Fastlane update +gem install bundler +bundle install +bundle update + +# Update fastlane plugins +bundle exec fastlane update_plugins + # Use appropriated dependencies according to the current branch bundle exec fastlane point_dependencies_to_same_feature