diff options
Diffstat (limited to 'shell.go')
| -rw-r--r-- | shell.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -34,6 +34,10 @@ func (repo *Repo) RunQuiet(cmd []string) cmd.Status { return result } +func (repo *Repo) RunRealtime(cmd []string) cmd.Status { + return shell.PathRunRealtime(repo.GetFullPath(), cmd) +} + // for now, even check cmd.Exit func (repo *Repo) strictRun(cmd []string) (bool, error) { result := repo.RunQuiet(cmd) |
