diff options
Diffstat (limited to 'xterm.go')
| -rw-r--r-- | xterm.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -123,7 +123,7 @@ func XtermCmdWait(path string, cmd []string) { // keeps git diff from exiting on small diffs os.Setenv("LESS", "-+F -+X -R") - PathRun(path, argsXterm) + PathRunLog(path, argsXterm, INFO) } // spawns an xterm with something you can run at a command line @@ -136,5 +136,5 @@ func XtermCmdBash(path string, cmd []string) { bash += "'; bash\"" tmp = append(argsXterm, "bash", bash) log.Info("XtermCmd() path =", path, "cmd =", tmp) - go PathRun(path, tmp) + go PathRunLog(path, tmp, INFO) } |
