Files
mattermost-mobile/scripts/preinstall.sh
Elias Nahum 413d3c59dd update dependencies (#6886)
* update dependencies

* update react-native-image-picker

* use Xcode 14.2 on CI

* downgrade readable-stream

* update fastlane

* Revert "use Xcode 14.2 on CI"

This reverts commit cb0ed81a85.
2022-12-23 14:46:58 +02:00

8 lines
205 B
Bash
Executable File

#!/usr/bin/env bash
if [[ "$OSTYPE" == "darwin"* ]]; then
if !(gem list bundler -i --version 2.3.26) > /dev/null 2>&1; then
echo "Installing Bundler"
gem install bundler --version 2.3.26
fi
fi