Skip to content

Commit

Permalink
Merge pull request #20 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Version 0.8.1
  • Loading branch information
andyone authored Nov 5, 2018
2 parents a098af9 + 979eb3d commit d4e0f2e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ go:
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- tip

os:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
################################################################################

# This Makefile generated by GoMakeGen 0.8.0 using next command:
# This Makefile generated by GoMakeGen 0.8.1 using next command:
# gomakegen --metalinter --strip .

################################################################################
Expand Down
6 changes: 4 additions & 2 deletions gomakegen.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import (
// App info
const (
APP = "gomakegen"
VER = "0.8.0"
VER = "0.8.1"
DESC = "Utility for generating makefiles for Go applications"
)

Expand Down Expand Up @@ -663,9 +663,11 @@ func (m *Makefile) getBinTarget() string {
} else {
result += "\tgo build " + bin + ".go\n"
}

result += "\n"
}

return result + "\n"
return result
}

// getInstallTarget generate target for "install" command
Expand Down

0 comments on commit d4e0f2e

Please sign in to comment.