summaryrefslogtreecommitdiff
path: root/shell.go
diff options
context:
space:
mode:
Diffstat (limited to 'shell.go')
-rw-r--r--shell.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell.go b/shell.go
index 2bde405..f2806d5 100644
--- a/shell.go
+++ b/shell.go
@@ -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)