Switching cp to copy

This commit is contained in:
Arnaud LECOMTE
2023-09-05 14:37:29 +02:00
parent f2392f6e37
commit aeb7793fba
4 changed files with 5 additions and 4 deletions

View File

@@ -8,7 +8,8 @@ import (
var (
baseCmd = &cobra.Command{
DisableFlagsInUseLine: true,
Use: "cp CONTAINER NEW_NAME",
Use: "copy CONTAINER NEW_NAME",
Aliases: []string{"cp"},
Short: "Copy an existing container",
Long: "This command will duplicate an imported container image.",
RunE: CobraRunE,