Skip to content

Commit

Permalink
Dependencies update
Browse files Browse the repository at this point in the history
  • Loading branch information
andyone committed Apr 29, 2024
1 parent f45c11a commit b9d2924
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
################################################################################

# This Makefile generated by GoMakeGen 3.0.0 using next command:
# This Makefile generated by GoMakeGen 3.0.1 using next command:
# gomakegen --mod --strip .
#
# More info: https://kaos.sh/gomakegen
Expand All @@ -25,15 +25,15 @@ GITREV ?= $(shell test -s $(MAKEDIR)/.git && git rev-parse --short HEAD)
all: gomakegen ## Build all binaries

gomakegen:
@echo "[37m[1/1][0m [36;1mBuilding gomakegen…[0m"
@echo "[36;1mBuilding gomakegen…[0m"
@go build $(VERBOSE_FLAG) -ldflags="-s -w -X main.gitrev=$(GITREV)" gomakegen.go

install: ## Install all binaries
@echo "[37m[1/1][0m [36;1mInstalling binaries…[0m"
@echo "[36;1mInstalling binaries…[0m"
@cp gomakegen /usr/bin/gomakegen

uninstall: ## Uninstall all binaries
@echo "[37m[1/1][0m [36;1mRemoving installed binaries…[0m"
@echo "[36;1mRemoving installed binaries…[0m"
@rm -f /usr/bin/gomakegen

init: mod-init ## Initialize new module
Expand Down Expand Up @@ -81,23 +81,23 @@ endif
@test -d vendor && rm -rf vendor && go mod vendor $(VERBOSE_FLAG) || :

mod-download:
@echo "[37m[1/1][0m [36;1mDownloading dependencies…[0m"
@echo "[36;1mDownloading dependencies…[0m"
@go mod download

mod-vendor:
@echo "[37m[1/1][0m [36;1mVendoring dependencies…[0m"
@echo "[36;1mVendoring dependencies…[0m"
@rm -rf vendor && go mod vendor $(VERBOSE_FLAG) || :

fmt: ## Format source code with gofmt
@echo "[37m[1/1][0m [36;1mFormatting sources…[0m"
@echo "[36;1mFormatting sources…[0m"
@find . -name "*.go" -exec gofmt -s -w {} \;

vet: ## Runs 'go vet' over sources
@echo "[37m[1/1][0m [36;1mRunning 'go vet' over sources…[0m"
@echo "[36;1mRunning 'go vet' over sources…[0m"
@go vet -composites=false -printfuncs=LPrintf,TLPrintf,TPrintf,log.Debug,log.Info,log.Warn,log.Error,log.Critical,log.Print ./...

clean: ## Remove generated files
@echo "[37m[1/1][0m [36;1mRemoving built binaries…[0m"
@echo "[36;1mRemoving built binaries…[0m"
@rm -f gomakegen

help: ## Show this info
Expand All @@ -109,6 +109,6 @@ help: ## Show this info
| sed 's/ifdef //' \
| awk 'BEGIN {FS = " .*?## "}; {printf " \033[32m%-11s\033[0m %s\n", $$1, $$2}'
@echo -e ''
@echo -e '\033[90mGenerated by GoMakeGen 3.0.0\033[0m\n'
@echo -e '\033[90mGenerated by GoMakeGen 3.0.1\033[0m\n'

################################################################################
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/essentialkaos/gomakegen

go 1.19

require github.com/essentialkaos/ek/v12 v12.118.0
require github.com/essentialkaos/ek/v12 v12.119.0

require (
github.com/essentialkaos/depsy v1.1.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
github.com/essentialkaos/check v1.4.0 h1:kWdFxu9odCxUqo1NNFNJmguGrDHgwi3A8daXX1nkuKk=
github.com/essentialkaos/depsy v1.1.0 h1:U6dp687UkQwXlZU17Hg2KMxbp3nfZAoZ8duaeUFYvJI=
github.com/essentialkaos/depsy v1.1.0/go.mod h1:kpiTAV17dyByVnrbNaMcZt2jRwvuXClUYOzpyJQwtG8=
github.com/essentialkaos/ek/v12 v12.118.0 h1:fosk+jCK9GrrnPiua1O6PQSwrlQ25arwespB6fnbi9g=
github.com/essentialkaos/ek/v12 v12.118.0/go.mod h1:VVCk0ZA3CB5lPkQ7bUHo/mOBs02jkjMRlLS8ES2TQpw=
github.com/essentialkaos/ek/v12 v12.119.0 h1:0Awjj7DxHz2i3t1JiF+58dxGqMI94qYy0BA3iezorlI=
github.com/essentialkaos/ek/v12 v12.119.0/go.mod h1:VVCk0ZA3CB5lPkQ7bUHo/mOBs02jkjMRlLS8ES2TQpw=
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M=
Expand Down

0 comments on commit b9d2924

Please sign in to comment.