Skip to content

Commit 1d759fe

Browse files
committed
Rename build directory to tools
1 parent 462cda6 commit 1d759fe

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ clean: ## remove files created during build
1717
.PHONY: install
1818
install: ## install build tools
1919
$(call print-target)
20-
cd build && go install mvdan.cc/gofumpt/gofumports
21-
cd build && go install github.com/golangci/golangci-lint/cmd/golangci-lint
22-
cd build && go install github.com/goreleaser/goreleaser
20+
cd tools && go install mvdan.cc/gofumpt/gofumports
21+
cd tools && go install github.com/golangci/golangci-lint/cmd/golangci-lint
22+
cd tools && go install github.com/goreleaser/goreleaser
2323

2424
.PHONY: generate
2525
generate: ## go generate
@@ -56,7 +56,7 @@ test: ## go test with race detector and code covarage
5656
mod-tidy: ## go mod tidy
5757
$(call print-target)
5858
go mod tidy
59-
cd build && go mod tidy
59+
cd tools && go mod tidy
6060

6161
.PHONY: build-snapshot
6262
build-snapshot: ## goreleaser --snapshot --skip-publish --rm-dist
@@ -72,7 +72,7 @@ diff: ## git diff
7272
.PHONY: release
7373
release: ## goreleaser --rm-dist
7474
$(call print-target)
75-
cd build && go install github.com/goreleaser/goreleaser
75+
cd tools && go install github.com/goreleaser/goreleaser
7676
goreleaser --rm-dist
7777

7878
.PHONY: run
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)