Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion checkpointctl.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ func main() {
rootCommand.AddCommand(cmd.List())
rootCommand.AddCommand(cmd.BuildCmd())
rootCommand.AddCommand(cmd.PluginCmd())
rootCommand.AddCommand(cmd.Diff())

// Discover and register external plugins from PATH.
// Plugins are executables named checkpointctl-<name> where <name>
Expand All @@ -42,7 +43,6 @@ func main() {
rootCommand.AddCommand(cmd.CreatePluginCommand(plugin))
}

rootCommand.AddCommand(cmd.Diff())

rootCommand.Version = version

Expand Down
Loading