strings
ci/woodpecker/push/woodpecker Pipeline was successful Details
ci/woodpecker/tag/woodpecker Pipeline was successful Details

This commit is contained in:
a 2023-05-03 00:51:58 -05:00
parent 6267829f68
commit 4df03267b2
1 changed files with 2 additions and 3 deletions

View File

@ -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
}