diff options
| author | Jeff Carr <[email protected]> | 2025-02-14 18:39:59 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-14 18:39:59 -0600 |
| commit | e5a5454bc0e58d24a6146e4973518160b909582f (patch) | |
| tree | dffa685deb9fdc64d2d7a675022d82d5b326f765 /shell.go | |
| parent | e127f53bd42684eedf0f6fa6284ac1eeeb7df561 (diff) | |
minor improvmentsv0.0.76
Diffstat (limited to 'shell.go')
| -rw-r--r-- | shell.go | 15 |
1 files changed, 5 insertions, 10 deletions
@@ -136,19 +136,14 @@ func (repo *Repo) RunStrictAll(all [][]string) (*cmd.Status, error) { return nil, nil } -func (repo *Repo) RunVerbose(cmd []string) (*cmd.Status, error) { - log.Info("Running:", repo.GetGoPath(), cmd) - r, err := repo.RunStrict(cmd) +func (repo *Repo) RunVerbose(cmd []string) error { + log.Info("EXEC Running:", repo.GetGoPath(), cmd) + err := shell.PathExecVerbose(repo.GetFullPath(), cmd) if err != nil { log.Info("Error", cmd, err) + return err } - for _, line := range r.Stdout { - log.Info(line) - } - for _, line := range r.Stderr { - log.Info(line) - } - return r, err + return nil } func (repo *Repo) RunVerboseOnError(cmd []string) (*cmd.Status, error) { |
