Skip to content

Commit 9e24aff

Browse files
committed
Fix the release script after making the SDK a submodule
1 parent f3e09fa commit 9e24aff

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Tools/Release/buildRelease.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ cp -R ../../../.. /tmp/$REPO_NAME
4242
mv /tmp/$REPO_NAME .
4343
else
4444
echo "Git clone $REPO_URL with branch/tag $TAG..."
45-
git clone $REPO_URL --depth=1 --branch $TAG
45+
git clone --recursive $REPO_URL --depth=1 --branch $TAG
4646
fi
4747

4848
cd $REPO_NAME
@@ -55,11 +55,6 @@ bundle update
5555
# Update fastlane plugins
5656
bundle exec fastlane update_plugins
5757

58-
# Use appropriated dependencies according to the current branch
59-
if [ "$LOCAL_SOURCE" != true ]; then
60-
bundle exec fastlane point_dependencies_to_same_feature
61-
fi
62-
6358
# Build
6459
bundle exec fastlane app_store build_number:$BUILD_NUMBER git_tag:$TAG
6560

0 commit comments

Comments
 (0)