File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
scripts/create_spec_repo/Sources/SpecRepoBuilder Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -377,7 +377,8 @@ struct SpecRepoBuilder: ParsableCommand {
377
377
let startDate = Date ( )
378
378
var minutes = 0
379
379
for pod in specFileDict. depInstallOrder {
380
- var timer : DispatchSourceTimer = {
380
+ print ( " ---------- \( pod) ----------- " )
381
+ let timer : DispatchSourceTimer = {
381
382
let t = DispatchSource . makeTimerSource ( )
382
383
t. schedule ( deadline: . now( ) , repeating: 60 )
383
384
t. setEventHandler ( handler: {
@@ -388,7 +389,6 @@ struct SpecRepoBuilder: ParsableCommand {
388
389
} ( )
389
390
timer. resume ( )
390
391
var podExitCode : Int32 = 0
391
- print ( " ---------- \( pod) ----------- " )
392
392
switch pod {
393
393
case " Firebase " :
394
394
podExitCode = pushPodspec (
@@ -420,3 +420,5 @@ struct SpecRepoBuilder: ParsableCommand {
420
420
}
421
421
}
422
422
}
423
+
424
+ SpecRepoBuilder . main ( )
You can’t perform that action at this time.
0 commit comments