Skip to content

Commit

Permalink
Add bundle install cmd before running bundle exec
Browse files Browse the repository at this point in the history
  • Loading branch information
mvitale1989 committed Nov 27, 2023
1 parent f13f768 commit be227c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/bump_build_number.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export GIT_LOCAL_BRANCH=${GIT_LOCAL_BRANCH}
EOF

log "Running the fastlane build number bumper script"
(. .env && cd fastlane && bundle exec fastlane set_app_build_number)
(. .env && cd fastlane && bundle install && bundle exec fastlane set_app_build_number)

if [ -n "${DRY_RUN}" ]; then
log "Pushing branch ${GIT_LOCAL_BRANCH}, and creating a corresponding PR to ${BRANCH_TO_BUILD}"
Expand Down

0 comments on commit be227c7

Please sign in to comment.