This commit is contained in:
alessio 2016-11-22 20:03:25 +01:00
parent 71c7118470
commit ecc5bf3945
1 changed files with 6 additions and 1 deletions

View File

@ -17,7 +17,12 @@ func (p *Project) goRun(channel chan bool, runner chan bool, wr *sync.WaitGroup)
var build *exec.Cmd
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 {
build = exec.Command(filepath.Join(os.Getenv("GOBIN"), filepath.Base(p.path)))
}