Skip to content

Commit

Permalink
Merge pull request #54 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Improvements
  • Loading branch information
andyone authored Dec 5, 2019
2 parents be1b45f + cc2365b commit bf03d4a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
################################################################################

# This Makefile generated by GoMakeGen 1.2.0 using next command:
# This Makefile generated by GoMakeGen 1.3.0 using next command:
# gomakegen .
#
# More info: https://kaos.sh/gomakegen

################################################################################

.DEFAULT_GOAL := help
.PHONY = fmt all clean git-config deps help
.PHONY = fmt vet all clean git-config deps help

################################################################################

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

vet: ## Runs go vet over sources
go vet -composites=false -printfuncs=LPrintf,TLPrintf,TPrintf,log.Debug,log.Info,log.Warn,log.Error,log.Critical,log.Print ./...

clean: ## Remove generated files
rm -f sslcli

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

################################################################################
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<p align="center">
<a href="https://goreportcard.com/report/github.com/essentialkaos/sslcli"><img src="https://goreportcard.com/badge/github.com/essentialkaos/sslcli"></a>
<a href="https://codebeat.co/projects/github-com-essentialkaos-sslcli-master"><img src="https://codebeat.co/badges/edc52bb1-c807-470b-8466-b86cc0cfcdbe"></a>
<a href="https://travis-ci.org/essentialkaos/sslcli"><img src="https://travis-ci.org/essentialkaos/sslcli.svg"></a>
<a href="https://travis-ci.com/essentialkaos/sslcli"><img src="https://travis-ci.com/essentialkaos/sslcli.svg"></a>
<a href="#license"><img src="https://gh.kaos.st/apache2.svg"></a>
</p>

Expand Down Expand Up @@ -124,8 +124,8 @@ Examples

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

### Contributing

Expand Down

0 comments on commit bf03d4a

Please sign in to comment.