Method
readOutput
(output io.Reader, wg *sync.WaitGroup)
Source from the content-addressed store, hash-verified
| 83 | } |
| 84 | |
| 85 | func (c *Uipcli) readOutput(output io.Reader, wg *sync.WaitGroup) { |
| 86 | defer wg.Done() |
| 87 | scanner := bufio.NewScanner(output) |
| 88 | scanner.Split(bufio.ScanLines) |
| 89 | for scanner.Scan() { |
| 90 | c.Logger.Log(scanner.Text() + "\n") |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | func (c *Uipcli) getUipcliPath(targetFramework TargetFramework) (string, error) { |
| 95 | moduleManager := plugin.NewModuleManager(c.Logger) |
Tested by
no test coverage detected