commit
51d70d537a
|
@ -4,10 +4,6 @@ go:
|
||||||
- 1.6
|
- 1.6
|
||||||
- 1.7
|
- 1.7
|
||||||
- tip
|
- tip
|
||||||
before_install:
|
|
||||||
- go get gopkg.in/urfave/cli.v2
|
|
||||||
- go get gopkg.in/yaml.v2
|
|
||||||
- go get github.com/fatih/color
|
|
||||||
matrix:
|
matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- go: tip
|
- go: tip
|
|
@ -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