mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
cac5d0f234
* giving commands more clear names per issue #11287 * mark the top-level help text for cpt deprecated Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com>
18 lines
388 B
Go
18 lines
388 B
Go
package checkpoint
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var saveCmd = &cli.Command{
|
|
Name: "save",
|
|
Usage: "deprecated - please use 'prysmctl checkpoint-sync download' instead!",
|
|
Action: cliActionDeprecatedSave,
|
|
}
|
|
|
|
func cliActionDeprecatedSave(_ *cli.Context) error {
|
|
return fmt.Errorf("This command has moved. Please use 'prysmctl checkpoint-sync download' instead!")
|
|
}
|