Files
bundesmessenger-ios/use-dev-pods.sh
T
manuroe 2177aa73a5 Podfile: by default point to the release Matrix pods
Jenkins will use use-dev-pods.sh to build develop version of the app
2016-07-26 13:54:40 +02:00

17 lines
582 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
# Disable the active pods
sed -i '' -E "s!^(pod)(.*MatrixSDK)!#\1\2!g" Podfile
sed -i '' -E "s!^(pod)(.*MatrixKit)!#\1\2!g" Podfile
# And enable the develop ones
sed -i '' -E "s!^(#pod)(.*MatrixSDK)(.*develop)!pod\2\3!g" Podfile
sed -i '' -E "s!^(#pod)(.*MatrixKit)(.*develop)!pod\2\3!g" Podfile