mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-17 15:09:31 +02:00
12 lines
358 B
Bash
Executable File
12 lines
358 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This script modifies Podfile in order to use Matrix pods on their develop branch.
|
|
# It is intended to be used by Jenkins to build the develop version of the app.
|
|
|
|
echo Moving Podfile to develop Matrix pods
|
|
|
|
***REMOVED***.lock will be obsolete reset it
|
|
rm -f Podfile.lock
|
|
|
|
# Enable the develop one
|
|
sed -i '' -E "s!^(#)(.*'develop')!\2!g" Podfile |