fix tool args bug

This commit is contained in:
Tony Huang 2017-12-10 12:55:13 +08:00
parent 3c502fbdf7
commit 2b285b5e62
1 changed files with 2 additions and 2 deletions

View File

@ -98,9 +98,9 @@ func (t *Tool) Exec(path string, stop <-chan bool) (response Response) {
} else if !strings.HasSuffix(path, ".go") {
return
}
args := []string{}
args := t.Args
if strings.HasSuffix(path, ".go") {
args = append(t.Args, path)
args = append(args, path)
path = filepath.Dir(path)
}
if s := ext(path); s == "" || s == "go" {