Method
displayDryRunBuildEvent
(name, dryRunUUID, tag string)
Source from the content-addressed store, hash-verified
| 589 | } |
| 590 | |
| 591 | func (s *composeService) displayDryRunBuildEvent(name, dryRunUUID, tag string) { |
| 592 | s.events.On(api.Resource{ |
| 593 | ID: name + " ==>", |
| 594 | Status: api.Done, |
| 595 | Text: fmt.Sprintf("==> writing image %s", dryRunUUID), |
| 596 | }) |
| 597 | s.events.On(api.Resource{ |
| 598 | ID: name + " ==> ==>", |
| 599 | Status: api.Done, |
| 600 | Text: fmt.Sprintf(`naming to %s`, tag), |
| 601 | }) |
| 602 | } |
Tested by
no test coverage detected