Skip to content

Commit

Permalink
refactor: Remove provisionerd from Makefile (#184)
Browse files Browse the repository at this point in the history
This fixes an error that would occur in running `make build` - there isn't a `cmd/provisionerd/main.go` available at the moment.
  • Loading branch information
bryphe-coder committed Feb 7, 2022
1 parent 13360e2 commit bea708d
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit bea708d

Please sign in to comment.