mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-17 15:09:31 +02:00
8 lines
110 B
Bash
8 lines
110 B
Bash
#!/bin/bash
|
|
|
|
if [ $(gem list bundler -i) ]; then
|
|
bundle install
|
|
bundle exec pod install
|
|
else
|
|
pod install
|
|
fi |