()
| 262 | } |
| 263 | |
| 264 | func (p *cliProgress) Finish() { |
| 265 | if p.shared { |
| 266 | return |
| 267 | } |
| 268 | |
| 269 | p.uploadFinished.Store(true) |
| 270 | p.uploading.Store(false) |
| 271 | |
| 272 | p.output(defaultColor, "") |
| 273 | |
| 274 | if p.enableProgress { |
| 275 | p.out.printStderr("\n") |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | func (p *cliProgress) EstimationParameters() upload.EstimationParameters { |
| 280 | return upload.EstimationParameters{ |
no test coverage detected