Skip to content

Commit

Permalink
fix: incorrectly registered commands
Browse files Browse the repository at this point in the history
  • Loading branch information
crhntr committed Sep 23, 2022
1 parent cfb4fbd commit 5942d70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ func main() {
commandSet["version"] = commands.NewVersion(outLogger, version)

// Component Team Commands
commandSet[publishReleaseCommandName] = commands.NewUpdateRelease(outLogger, fs, mrsProvider)
commandSet[updateReleaseCommandName] = &commands.PublishRelease{
commandSet[updateReleaseCommandName] = commands.NewUpdateRelease(outLogger, fs, mrsProvider)
commandSet[publishReleaseCommandName] = &commands.PublishRelease{
FS: fs,
Logger: outLogger,
ReleaseUploaderFinder: ruFinder,
Expand Down

0 comments on commit 5942d70

Please sign in to comment.