Skip to content

Commit

Permalink
cleaner create output resolves #18
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff VanDellen committed Jan 15, 2021
1 parent 473ed8c commit 649488a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/cloudServerCreate.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ lw plan --file /tmp/cloud.server.create.yaml
}

fmt.Printf(
"Cloud server with uniq-id [%s] creating. Check status with 'cloud server status --uniq-id %s'\n",
uniqId, uniqId)
"Cloud server with uniq-id [%s] creating. Check status with: \n %s cloud server status --uniq-id %s\n",
uniqId, baseCmd, uniqId)
},
}

Expand Down
2 changes: 2 additions & 0 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ package cmd
import (
"fmt"
"os"
"path/filepath"
"regexp"
"strings"

Expand All @@ -33,6 +34,7 @@ import (
var cfgFile string
var lwCliInst *instance.Client
var useContext string
var baseCmd = filepath.Base(os.Args[0])

var rootCmd = &cobra.Command{
Use: "lw",
Expand Down

0 comments on commit 649488a

Please sign in to comment.