fixed #27
This commit is contained in:
parent
71c7118470
commit
ecc5bf3945
|
@ -17,7 +17,12 @@ func (p *Project) goRun(channel chan bool, runner chan bool, wr *sync.WaitGroup)
|
||||||
|
|
||||||
var build *exec.Cmd
|
var build *exec.Cmd
|
||||||
if len(p.Params) != 0 {
|
if len(p.Params) != 0 {
|
||||||
build = exec.Command(filepath.Join(os.Getenv("GOBIN"), filepath.Base(p.path)), p.Params...)
|
var params []string
|
||||||
|
for _, param := range p.Params {
|
||||||
|
arr := strings.Fields(param)
|
||||||
|
params = append(params, arr...)
|
||||||
|
}
|
||||||
|
build = exec.Command(filepath.Join(os.Getenv("GOBIN"), filepath.Base(p.path)), params...)
|
||||||
} else {
|
} else {
|
||||||
build = exec.Command(filepath.Join(os.Getenv("GOBIN"), filepath.Base(p.path)))
|
build = exec.Command(filepath.Join(os.Getenv("GOBIN"), filepath.Base(p.path)))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue