blob: 1b9813878002170e400ed8b774ba19ea79243676 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package ingest
import "lindenii.org/go/furgit/internal/utils"
func writeProgressf(state *ingestState, format string, args ...any) {
utils.BestEffortFprintf(state.opts.Progress, format, args...)
if state.opts.Progress != nil {
_ = state.opts.Progress.Flush()
}
}
|