22 lines
467 B
Go
22 lines
467 B
Go
|
package cliutil
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/urfave/cli/v2"
|
||
|
)
|
||
|
|
||
|
func RemovedCommand(name string) *cli.Command {
|
||
|
return &cli.Command{
|
||
|
Name: name,
|
||
|
Action: ErrorHandler(func(context *cli.Context) error {
|
||
|
return cli.Exit(
|
||
|
fmt.Sprintf("%s command is no longer supported by cloudflared. Consult Argo Tunnel documentation for possible alternative solutions.", name),
|
||
|
-1,
|
||
|
)
|
||
|
}),
|
||
|
Description: fmt.Sprintf("%s is deprecated", name),
|
||
|
Hidden: true,
|
||
|
}
|
||
|
}
|