Skip to content

Commit

Permalink
updated per code review
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Zheng <[email protected]>
  • Loading branch information
Two-Hearts committed Nov 28, 2023
1 parent d764eba commit 08fce42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/notation/plugin/uninstall.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Example - Uninstall plugin:
return nil
},
RunE: func(cmd *cobra.Command, args []string) error {
return unInstallPlugin(cmd, opts)
return uninstallPlugin(cmd, opts)
},
}

Expand All @@ -65,7 +65,7 @@ Example - Uninstall plugin:
return command
}

func unInstallPlugin(command *cobra.Command, opts *pluginUninstallOpts) error {
func uninstallPlugin(command *cobra.Command, opts *pluginUninstallOpts) error {
// set logger
ctx := opts.LoggingFlagOpts.InitializeLogger(command.Context())
pluginName := opts.pluginName
Expand Down

0 comments on commit 08fce42

Please sign in to comment.