summaryrefslogtreecommitdiff
path: root/shell.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-01 22:23:38 -0600
committerJeff Carr <[email protected]>2024-12-01 22:23:38 -0600
commit45fc9ea257d3f6bd3987858cc472c3e17f50c046 (patch)
tree9ea0823baf600c085ead565b04ff3866726da117 /shell.go
parent2ebdd32040635ac84d173ebb315dc65b35af2b57 (diff)
autogenpb now completely automatic
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)