strings
This commit is contained in:
parent
6267829f68
commit
4df03267b2
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue