fix: remove debug
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful

This commit is contained in:
abs3nt 2023-03-05 23:57:48 -08:00
parent d7c1169e39
commit 55e3fe4fca

View File

@ -185,7 +185,6 @@ func (t *Tool) Compile(path string, stop <-chan bool) (response Response) {
done := make(chan error) done := make(chan error)
args := append(t.cmd, t.Args...) args := append(t.cmd, t.Args...)
cmd := exec.Command(args[0], args[1:]...) cmd := exec.Command(args[0], args[1:]...)
fmt.Println(cmd)
if t.Dir != "" { if t.Dir != "" {
cmd.Dir, _ = filepath.Abs(t.Dir) cmd.Dir, _ = filepath.Abs(t.Dir)
} else { } else {