Skip to content

Commit 15d63c2

Browse files
authored
fix(sidekick): real runs for rust-publish (#2484)
During testing I hard-coded `-dry-run` to true, eventually we need to run for realsies.
1 parent 610cec9 commit 15d63c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/sidekick/rust_publish.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ the dependency order.
3737

3838
// rustBumpVersions increments the version numbers as needed.
3939
func rustPublish(rootConfig *config.Config, cmdLine *CommandLine) error {
40-
return rustrelease.Publish(rootConfig.Release, true) // cmdLine.DryRun)
40+
return rustrelease.Publish(rootConfig.Release, cmdLine.DryRun)
4141
}

0 commit comments

Comments
 (0)