File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -229,9 +229,11 @@ def PushPodspecs(version_data):
229
229
version_data: dictionary of versions to be updated.
230
230
"""
231
231
pods = version_data .keys ()
232
- tmp_dir = tempfile .mkdtemp ()
233
232
for pod in pods :
234
233
LogOrRun ('pod cache clean {} --all' .format (pod ))
234
+ if pod == 'Firebase' :
235
+ # Do the Firebase pod last
236
+ continue
235
237
if pod == 'FirebaseFirestore' :
236
238
warnings_ok = ' --allow-warnings'
237
239
else :
@@ -240,7 +242,9 @@ def PushPodspecs(version_data):
240
242
podspec = '{}.podspec' .format (pod )
241
243
LogOrRun ('pod repo push --skip-tests --use-json {} {}{}'
242
244
.format (GetCpdcInternal (), podspec , warnings_ok ))
243
- os .system ('rm -rf {}' .format (tmp_dir ))
245
+ LogOrRun ('pod repo push --skip-tests --use-json --skip-import-validation ' +
246
+ '--sources=sso://cpdc-internal/firebase.git,https://cdn.cocoapods.org' +
247
+ ' {} {}{}' .format (GetCpdcInternal (), podspec , warnings_ok ))
244
248
245
249
246
250
def UpdateVersions ():
You can’t perform that action at this time.
0 commit comments