aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2018-04-25 12:26:47 -0700
committerGravatar GitHub <noreply@github.com>2018-04-25 12:26:47 -0700
commit7707f37c770212c69d9ca4b36fba7e3ae193c108 (patch)
treee07488714d01d05d57b749390d378227960fd421 /scripts
parenta19773b9f3bd37aee6866846c38a2e0559ffb9d0 (diff)
Updates for push-pods script (#1184)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/push-pods.sh29
1 files changed, 15 insertions, 14 deletions
diff --git a/scripts/push-pods.sh b/scripts/push-pods.sh
index 39ce4ea..2fb8eaa 100755
--- a/scripts/push-pods.sh
+++ b/scripts/push-pods.sh
@@ -14,27 +14,28 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-# Push all the io2018 pods
+# Push GitHub pods to cpdc-internal-spec.
# When bootstrapping a repo, FirebaseCore must be pushed first, then
# FirebaseInstanceID, then FirebaseAnalytics, then the rest
# Most of the warnings are tvOS specific. The Firestore one needs
# investigation.
-pod repo push io2018 FirebaseCore.podspec
-pod repo push io2018 FirebaseAuth.podspec --allow-warnings
-pod repo push io2018 FirebaseDatabase.podspec --allow-warnings
-pod repo push io2018 FirebaseFirestore.podspec --allow-warnings
-pod repo push io2018 FirebaseFunctions.podspec
-pod repo push io2018 FirebaseMessaging.podspec
-pod repo push io2018 FirebaseStorage.podspec
+pod cache clean FirebaseCore --all
+pod cache clean FirebaseAuth --all
+pod cache clean FirebaseDatabase --all
+pod cache clean FirebaseFirestore --all
+pod cache clean FirebaseFunctions --all
+pod cache clean FirebaseMessaging --all
+pod cache clean FirebaseStorage --all
-# FirebaseAuth warnings
-# https://github.com/firebase/firebase-ios-sdk/pull/1159
-# https://github.com/google/google-toolbox-for-mac/issues/162
-
-# FirebaseDatabase warnings
-# https://github.com/firebase/firebase-ios-sdk/pull/1155
+pod repo push cpdc-internal-spec FirebaseCore.podspec
+pod repo push cpdc-internal-spec FirebaseAuth.podspec
+pod repo push cpdc-internal-spec FirebaseDatabase.podspec
+pod repo push cpdc-internal-spec FirebaseFirestore.podspec --allow-warnings
+pod repo push cpdc-internal-spec FirebaseFunctions.podspec
+pod repo push cpdc-internal-spec FirebaseMessaging.podspec
+pod repo push cpdc-internal-spec FirebaseStorage.podspec
# FirebaseFirestore warning (no plan to fix)
# https://github.com/firebase/firebase-ios-sdk/issues/1143