mirror of
				https://github.com/grafana/grafana.git
				synced 2025-02-25 18:55:37 -06:00 
			
		
		
		
	feat(cli): make remove command an alias for uninstall
This commit is contained in:
		@@ -48,13 +48,10 @@ var pluginCommands = []cli.Command{
 | 
			
		||||
		Usage:  "list all installed plugins",
 | 
			
		||||
		Action: runCommand(lsCommand),
 | 
			
		||||
	}, {
 | 
			
		||||
		Name:   "uninstall",
 | 
			
		||||
		Usage:  "uninstall <plugin id>",
 | 
			
		||||
		Action: runCommand(removeCommand),
 | 
			
		||||
	}, {
 | 
			
		||||
		Name:   "remove",
 | 
			
		||||
		Usage:  "remove <plugin id>",
 | 
			
		||||
		Action: runCommand(removeCommand),
 | 
			
		||||
		Name:    "uninstall",
 | 
			
		||||
		Aliases: []string{"remove"},
 | 
			
		||||
		Usage:   "uninstall <plugin id>",
 | 
			
		||||
		Action:  runCommand(removeCommand),
 | 
			
		||||
	},
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user