diff options
| author | Jeff Carr <[email protected]> | 2024-12-11 13:54:17 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-11 13:54:17 -0600 |
| commit | f39c2a86a699690c2d0fe6e7db48ba8f173b050e (patch) | |
| tree | bb9feee0a8fab94941e96f4d554c4694de9c98ab /cmd.go | |
| parent | 8d692299b0229fe94ba99c26f79e609154c5388a (diff) | |
still need to debug what is being left behindv0.22.16
Diffstat (limited to 'cmd.go')
| -rw-r--r-- | cmd.go | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -224,8 +224,13 @@ func PathRunRealtime(pwd string, args []string) cmd.Status { } // Block waiting for command to exit, be stopped, or be killed + // there are things being left around here. debug this finalStatus := <-statusChan - log.Info("shell.Run() notsure finalStatus", finalStatus.Cmd) + if len(finalStatus.Cmd) != 0 { + if string(finalStatus.Cmd) != "go" { + log.Info("shell.Run() finalStatus.Cmd is", finalStatus.Cmd) + } + } return findCmd.Status() } |
