From 4df03267b2bedfcd896d643bbc1044d71fbae2fc Mon Sep 17 00:00:00 2001 From: a Date: Wed, 3 May 2023 00:51:58 -0500 Subject: [PATCH] strings --- cli/cli.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 }