Skip to content

Commit

Permalink
backend/Makefile: Remove unused userctl reference
Browse files Browse the repository at this point in the history
The userctl command got removed in summer 2021 but was still part of
the first run of "make" in a fresh checkout.
  • Loading branch information
pothos committed Jun 22, 2023
1 parent 3f95eeb commit 82c5fde
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions backend/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,11 @@ test-clean-work-tree-backend:
fi

.PHONY: tools
tools: bin/initdb bin/userctl
tools: bin/initdb

bin/initdb:
go build -o bin/initdb ./cmd/initdb

bin/userctl:
go build -o bin/userctl ./cmd/userctl

tools/go-bindata: go.mod go.sum
env GOBIN=$(CURDIR)/tools/ go install github.com/kevinburke/go-bindata/go-bindata@v3.24.0

Expand Down Expand Up @@ -104,10 +101,6 @@ code-checks: tools/golangci-lint
./tools/golangci-lint run --fix
go mod tidy

.PHONY: swagger-init
swagger-init: tools/swag
./tools/swag init -g cmd/userctl/main.go -o api

.PHONY: tools/oapi-codegen
tools/oapi-codegen:
env GOBIN=$(CURDIR)/tools/ go install github.com/deepmap/oapi-codegen/cmd/oapi-codegen@v1.12.4
Expand Down

0 comments on commit 82c5fde

Please sign in to comment.