LeadKit/project-scripts/push_to_podspecs.sh

26 lines
842 B
Bash
Executable File

#!/bin/sh
# Find source dir
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$DIR"
ORDERED_PODSPECS="../TISwiftUtils/TISwiftUtils.podspec
../TIPagination/TIPagination.podspec
../TIFoundationUtils/TIFoundationUtils.podspec
../TIKeychainUtils/TIKeychainUtils.podspec
../TIUIKitCore/TIUIKitCore.podspec
../TIUIElements/TIUIElements.podspec
../TITableKitUtils/TITableKitUtils.podspec
../TINetworking/TINetworking.podspec
../TINetworkingCache/TINetworkingCache.podspec
../TIMoyaNetworking/TIMoyaNetworking.podspec
../TIMapUtils/TIMapUtils.podspec
../TIAppleMapUtils/TIAppleMapUtils.podspec
../TIGoogleMapUtils/TIGoogleMapUtils.podspec
../TIYandexMapUtils/TIYandexMapUtils.podspec"
for podspec_path in ${ORDERED_PODSPECS}; do
bundle exec pod repo push git@github.com:TouchInstinct/Podspecs ${podspec_path} --allow-warnings
done