Skip to content

Commit

Permalink
Fixed minor bug with generating targets for making binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
andyone committed Nov 5, 2018
1 parent 7902560 commit 69d1f9e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 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
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 69d1f9e

Please sign in to comment.