Browse Source

Merge pull request #20 from jeffastorey/check-path

not using dir as base dir if it's empty
pull/22/head
Thomas Boerger 9 years ago
committed by GitHub
parent
commit
519daa7fc9
  1. 6
      main.go

6
main.go

@ -66,6 +66,12 @@ func main() {
for _, c := range commands { for _, c := range commands {
c.Env = os.Environ() c.Env = os.Environ()
c.Dir = workspace.Path c.Dir = workspace.Path
if c.Dir == "" {
wd, err := os.Getwd()
if err == nil {
c.Dir = wd
}
}
if vargs.RootDir != "" { if vargs.RootDir != "" {
c.Dir = c.Dir + "/" + vargs.RootDir c.Dir = c.Dir + "/" + vargs.RootDir
} }

Loading…
Cancel
Save