Skip to content

Commit bf03d4a

Browse files
authored
Merge pull request #54 from essentialkaos/develop
Improvements
2 parents be1b45f + cc2365b commit bf03d4a

2 files changed

Lines changed: 9 additions & 6 deletions

File tree

Makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
################################################################################
22

3-
# This Makefile generated by GoMakeGen 1.2.0 using next command:
3+
# This Makefile generated by GoMakeGen 1.3.0 using next command:
44
# gomakegen .
55
#
66
# More info: https://kaos.sh/gomakegen
77

88
################################################################################
99

1010
.DEFAULT_GOAL := help
11-
.PHONY = fmt all clean git-config deps help
11+
.PHONY = fmt vet all clean git-config deps help
1212

1313
################################################################################
1414

@@ -33,6 +33,9 @@ deps: git-config ## Download dependencies
3333
fmt: ## Format source code with gofmt
3434
find . -name "*.go" -exec gofmt -s -w {} \;
3535

36+
vet: ## Runs go vet over sources
37+
go vet -composites=false -printfuncs=LPrintf,TLPrintf,TPrintf,log.Debug,log.Info,log.Warn,log.Error,log.Critical,log.Print ./...
38+
3639
clean: ## Remove generated files
3740
rm -f sslcli
3841

@@ -41,6 +44,6 @@ help: ## Show this info
4144
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
4245
| awk 'BEGIN {FS = ":.*?## "}; {printf " \033[33m%-12s\033[0m %s\n", $$1, $$2}'
4346
@echo -e ''
44-
@echo -e '\033[90mGenerated by GoMakeGen 1.2.0\033[0m\n'
47+
@echo -e '\033[90mGenerated by GoMakeGen 1.3.0\033[0m\n'
4548

4649
################################################################################

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<p align="center">
44
<a href="https://goreportcard.com/report/github.com/essentialkaos/sslcli"><img src="https://goreportcard.com/badge/github.com/essentialkaos/sslcli"></a>
55
<a href="https://codebeat.co/projects/github-com-essentialkaos-sslcli-master"><img src="https://codebeat.co/badges/edc52bb1-c807-470b-8466-b86cc0cfcdbe"></a>
6-
<a href="https://travis-ci.org/essentialkaos/sslcli"><img src="https://travis-ci.org/essentialkaos/sslcli.svg"></a>
6+
<a href="https://travis-ci.com/essentialkaos/sslcli"><img src="https://travis-ci.com/essentialkaos/sslcli.svg"></a>
77
<a href="#license"><img src="https://gh.kaos.st/apache2.svg"></a>
88
</p>
99

@@ -124,8 +124,8 @@ Examples
124124

125125
| Branch | Status |
126126
|--------|--------|
127-
| `master` | [![Build Status](https://travis-ci.org/essentialkaos/sslcli.svg?branch=master)](https://travis-ci.org/essentialkaos/sslcli) |
128-
| `develop` | [![Build Status](https://travis-ci.org/essentialkaos/sslcli.svg?branch=develop)](https://travis-ci.org/essentialkaos/sslcli) |
127+
| `master` | [![Build Status](https://travis-ci.com/essentialkaos/sslcli.svg?branch=master)](https://travis-ci.com/essentialkaos/sslcli) |
128+
| `develop` | [![Build Status](https://travis-ci.com/essentialkaos/sslcli.svg?branch=develop)](https://travis-ci.com/essentialkaos/sslcli) |
129129

130130
### Contributing
131131

0 commit comments

Comments
 (0)