From 55e3fe4fca4eb1bfec9434e8eefdbd9fb77f7ba4 Mon Sep 17 00:00:00 2001 From: abs3nt Date: Sun, 5 Mar 2023 23:57:48 -0800 Subject: [PATCH] fix: remove debug --- src/haunt/tools.go | 1 - 1 file changed, 1 deletion(-) diff --git a/src/haunt/tools.go b/src/haunt/tools.go index ee92a33..91490f6 100644 --- a/src/haunt/tools.go +++ b/src/haunt/tools.go @@ -185,7 +185,6 @@ func (t *Tool) Compile(path string, stop <-chan bool) (response Response) { done := make(chan error) args := append(t.cmd, t.Args...) cmd := exec.Command(args[0], args[1:]...) - fmt.Println(cmd) if t.Dir != "" { cmd.Dir, _ = filepath.Abs(t.Dir) } else {