Update CLI reference (#248)

Co-authored-by: katexochen <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2022-10-14 10:48:20 +02:00 committed by GitHub
parent 84a9f0bfb4
commit 74c3c93dec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 16 additions and 17 deletions

View file

@ -23,8 +23,8 @@ import (
func newMiniDownCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "down",
Short: "Destroy a mini Constellation cluster",
Long: "Destroy a mini Constellation cluster.",
Short: "Destroy a MiniConstellation cluster",
Long: "Destroy a MiniConstellation cluster.",
Args: cobra.ExactArgs(0),
RunE: runDown,
}
@ -53,7 +53,7 @@ func checkForMiniCluster(fileHandler file.Handler) error {
return errors.New("cluster is not a QEMU based Constellation")
}
if idFile.UID != "mini" {
return errors.New("cluster is not a mini Constellation cluster")
return errors.New("cluster is not a MiniConstellation cluster")
}
return nil