diff --git a/realize/cli.go b/realize/cli.go index d8d29a6..28a36b5 100644 --- a/realize/cli.go +++ b/realize/cli.go @@ -18,7 +18,7 @@ var ( // RPrefix tool name RPrefix = "realize" // RVersion current version - RVersion = "2.0" + RVersion = "2.0.1" // RExt file extension RExt = ".yaml" // RFile config file name diff --git a/realize/projects.go b/realize/projects.go index 97f3674..1ef974c 100644 --- a/realize/projects.go +++ b/realize/projects.go @@ -572,7 +572,7 @@ func (p *Project) run(path string, stream chan Response, stop <-chan bool) (err name := filepath.Base(path) if path == "." && p.Tools.Run.Dir == "" { name = filepath.Base(Wdir()) - } else { + } else if p.Tools.Run.Dir != "" { name = filepath.Base(dirPath) } path = filepath.Join(dirPath, name)