(url string, description string, out io.Writer, flags *WebFlags)
| 48 | } |
| 49 | |
| 50 | func doWeb(url string, description string, out io.Writer, flags *WebFlags) { |
| 51 | link := output.Blue(url) |
| 52 | fmt.Fprintf(out, "View this %s on Octopus Deploy: %s\n", description, link) |
| 53 | if flags.Web.Value { |
| 54 | browser.OpenURL(url) |
| 55 | } |
| 56 | } |
no test coverage detected