From bea708d28d4120e16b0aaac84b0507ecd25295aa Mon Sep 17 00:00:00 2001 From: Bryan Date: Mon, 7 Feb 2022 14:45:42 -0800 Subject: [PATCH] refactor: Remove provisionerd from Makefile (#184) This fixes an error that would occur in running `make build` - there isn't a `cmd/provisionerd/main.go` available at the moment. --- Makefile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 4e2fa04949..9a56e417cc 100644 --- a/Makefile +++ b/Makefile @@ -3,12 +3,7 @@ bin/coderd: go build -o bin/coderd cmd/coderd/main.go .PHONY: bin/coderd -bin/provisionerd: - mkdir -p bin - go build -o bin/provisionerd cmd/provisionerd/main.go -.PHONY: bin/provisionerd - -build: site/out bin/coderd bin/provisionerd +build: site/out bin/coderd .PHONY: build # Runs migrations to output a dump of the database.