Skip to content

Commit f1f5602

Browse files
committed
Solved comments
1 parent e6bd976 commit f1f5602

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

plugin/commands/cdn/origin_remove.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,11 @@ func NewOriginRemoveCommand(sl *metadata.SoftlayerCommand) *OriginRemoveCommand
2121
CdnManager: managers.NewCdnManager(sl.Session),
2222
}
2323
cobraCmd := &cobra.Command{
24-
Use: "origin-remove",
24+
Use: "origin-remove " + T("IDENTIFIER") + " " + T("PATH"),
2525
Short: T("Removes an origin path for an existing CDN mapping."),
26-
Long: T("${COMMAND_NAME} sl cdn origin-remove"),
26+
Long: T(`${COMMAND_NAME} sl cdn origin-remove
27+
Example:
28+
${COMMAND_NAME} sl cdn origin-remove 123456789 "/path/*"`),
2729
Args: metadata.TwoArgs,
2830
RunE: func(cmd *cobra.Command, args []string) error {
2931
return thisCmd.Run(args)

0 commit comments

Comments
 (0)