Files
bundesmessenger-ios/createWorkspace.sh
2020-12-20 23:03:20 +01:00

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