Skip to content

Commit b5fea5e

Browse files
committed
[swift_snapshot_tool] Turn off dry run from run command.
I think this snuck in b/c I was playing with run_toolchain... unfortunately it made it not actually work. Noticed it while I was triaging today.
1 parent 1d3cb5c commit b5fea5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/swift_snapshot_tool/Sources/swift_snapshot_tool/run_toolchain.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ struct RunToolchains: AsyncParsableCommand {
5656
}
5757

5858
// Load our tags from swift's github repo
59-
let tags = try! await getTagsFromSwiftRepo(branch: branch, dryRun: true)
59+
let tags = try! await getTagsFromSwiftRepo(branch: branch)
6060

6161
guard var tagIndex = tags.firstIndex(where: { $0.tag.name == self.tag }) else {
6262
log("Failed to find tag: \(self.tag)")

0 commit comments

Comments
 (0)