Skip to content

Commit f806c30

Browse files
authored
PodspecsTester/main.swift: use let instead of var for timer (#10435)
1 parent 6dfadd2 commit f806c30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ReleaseTooling/Sources/PodspecsTester/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ struct PodspecsTester: ParsableCommand {
104104
InitializeSpecTesting.setupRepo(sdkRepoURL: gitRoot)
105105
let manifest = FirebaseManifest.shared
106106
var minutes = 0
107-
var timer: DispatchSourceTimer = {
107+
let timer: DispatchSourceTimer = {
108108
let t = DispatchSource.makeTimerSource()
109109
t.schedule(deadline: .now(), repeating: 60)
110110
t.setEventHandler(handler: {

0 commit comments

Comments
 (0)