MCPcopy Create free account
hub / github.com/OctopusDeploy/cli / VerboseOut

Function VerboseOut

pkg/cmd/package/support/pack.go:153–157  ·  view source on GitHub ↗
(out io.Writer, isVerbose bool, messageTemplate string, messageArgs ...any)

Source from the content-addressed store, hash-verified

151}
152
153func VerboseOut(out io.Writer, isVerbose bool, messageTemplate string, messageArgs ...any) {
154 if isVerbose {
155 fmt.Fprintf(out, messageTemplate, messageArgs...)
156 }
157}
158
159func BuildTimestampSemVer(dateTime time.Time) string {
160 endSegment := dateTime.Hour()*10000 + dateTime.Minute()*100 + dateTime.Second()

Callers 4

BuildPackageFunction · 0.85
buildArchiveFunction · 0.85

Calls

no outgoing calls