diff options
| author | Jeff Carr <[email protected]> | 2024-11-22 21:22:24 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-22 21:22:24 -0600 |
| commit | f0b4869dfae9f8d759182964bbcf0128ed63102c (patch) | |
| tree | 2df55c1216e5037b136cf48c3e85e0436af44565 /cmd.go | |
| parent | 7afc01d14e6d4734783a2083e060a6130394e122 (diff) | |
Diffstat (limited to 'cmd.go')
| -rw-r--r-- | cmd.go | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -128,6 +128,11 @@ func PathRunQuiet(pwd string, args []string) cmd.Status { return PathRunLog(pwd, args, INFO) } +// send blank path == use current golang working directory +func RunRealtime(args []string) cmd.Status { + return PathRunRealtime("", args) +} + // echos twice a second if anything sends to STDOUT or STDERR // not great, but it's really just for watching things run in real time anyway // TODO: fix \r handling for things like git-clone so the terminal doesn't |
