Skip to content

Commit

Permalink
Merge pull request #20 for v0.12.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevatkm authored Jul 21, 2018
2 parents 536f960 + 16df967 commit 5660eeb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ aah - A secure, flexible, rapid Go web framework.

### News

* aah CLI <a href="https://github.com/go-aah/tools/releases/latest"><img src="https://img.shields.io/badge/version-0.12.0-blue.svg" alt="Release Version"></a> [released](https://github.com/go-aah/tools/releases/latest) and tagged on Jul 08, 2018.
* aah CLI <a href="https://github.com/go-aah/tools/releases/latest"><img src="https://img.shields.io/badge/version-0.12.1-blue.svg" alt="Release Version"></a> [released](https://github.com/go-aah/tools/releases/latest) and tagged on Jul 20, 2018.

Visit official website https://aahframework.org to learn more about `aah` framework.
4 changes: 3 additions & 1 deletion aah/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,9 @@ func copyFilesToWorkingDir(projectCfg *config.Config, appBaseDir, appBinary stri

if ess.IsFileExists(srcdir) {
if err = ess.CopyDir(buildBaseDir, srcdir, subTreeExcludes); err != nil {
return "", err
if !strings.HasSuffix(err.Error(), "/bin") {
return "", err
}
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions aah/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ func importPathRelwd() string {
if ess.IsFileExists(filepath.Join(appDir, aahProjectIdentifier)) {
importPath, _ = filepath.Rel(srcDir, appDir)
break
} else {
appDir = filepath.Dir(appDir)
}

if appDir == srcDir {
break
}

appDir = filepath.Dir(appDir)
}
}

Expand Down
2 changes: 1 addition & 1 deletion aah/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
)

// Version no. of aah framework CLI tool
const Version = "0.12.0"
const Version = "0.12.1"

var (
errVersionNotExists = errors.New("version not exists")
Expand Down

0 comments on commit 5660eeb

Please sign in to comment.