MCPcopy Create free account
hub / github.com/UiPath/uipathcli / readOutput

Method readOutput

plugin/studio/uipcli.go:85–92  ·  view source on GitHub ↗
(output io.Reader, wg *sync.WaitGroup)

Source from the content-addressed store, hash-verified

83}
84
85func (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
94func (c *Uipcli) getUipcliPath(targetFramework TargetFramework) (string, error) {
95 moduleManager := plugin.NewModuleManager(c.Logger)

Callers 1

ExecuteAndWaitMethod · 0.95

Calls 1

LogMethod · 0.65

Tested by

no test coverage detected