mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-18 07:28:28 +02:00
9 lines
166 B
Bash
9 lines
166 B
Bash
#!/bin/bash
|
|
cp IDETemplateMacros.plist Riot.xcodeproj/xcshareddata/
|
|
if [ $(gem list bundler -i) ]; then
|
|
bundle install
|
|
bundle exec pod install
|
|
else
|
|
pod install
|
|
fi
|