summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-12-26 13:13:59 +0300
committerValery Piashchynski <[email protected]>2020-12-26 13:13:59 +0300
commit1aaf6e6ffb015cd5a21d9d938ad84c18723973c5 (patch)
tree7221427ba25f8f99a10720778a420703dc2bff92 /Makefile
parentde4d0b6e66ceda08b0daec18a218c1baa71ebf04 (diff)
Reorganize eventsv2.0.0-beta4
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 01f7d205..7c0cabbe 100755
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ help: ## Show this help
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z0-9_-]+:.*?## / {printf " \033[32m%-14s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
build: ## Build RR binary file for local os/arch
- CGO_ENABLED=0 go build -trimpath -ldflags "-s" -o ./rr ./cmd/rr/main.go
+ CGO_ENABLED=0 go build -trimpath -ldflags "-s" -o ./rr ./cmd/main.go
clean: ## Make some clean
rm ./rr
@@ -46,5 +46,4 @@ test: ## Run application tests
go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/static
lint: ## Run application linters
- go fmt ./...
- golint ./...
+ golangci-lint run