From 2b285b5e6230d31b51bacc231764a954581334bf Mon Sep 17 00:00:00 2001 From: Tony Huang Date: Sun, 10 Dec 2017 12:55:13 +0800 Subject: [PATCH] fix tool args bug --- realize/tools.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/realize/tools.go b/realize/tools.go index 89b974e..0b37f1a 100644 --- a/realize/tools.go +++ b/realize/tools.go @@ -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" {