mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 03:31:20 +00:00
83932d8e05
Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
18 lines
387 B
Go
18 lines
387 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")
|
|
}
|