diff --git a/cli/cli.go b/cli/cli.go index b84a5d2..9d29b76 100644 --- a/cli/cli.go +++ b/cli/cli.go @@ -49,7 +49,7 @@ func (c *Profile) Run(ctx Context) error { } req.URL.RawQuery = q.Encode() - fmt.Printf("getting profile from %s...\n", req.URL) + fmt.Printf("getting %s profile from %s...\n", c.Mode, req.URL) resp, err := httpClient.Do(req) if err != nil { return err @@ -59,7 +59,7 @@ func (c *Profile) Run(ctx Context) error { if err != nil { return err } - fmt.Printf("see profile at %s/%s/ \n", c.Remote, res) + fmt.Printf("see %s profile at %s/%s/ \n", c.Mode, c.Remote, res) return nil } @@ -79,7 +79,6 @@ func (c *Upload) Run(ctx Context) error { return err } fmt.Printf("see profile at %s/%s/ \n", c.Remote, res) - return nil }