Skip to content

Commit

Permalink
HTTP Server cmd didn't need its own directory
Browse files Browse the repository at this point in the history
  • Loading branch information
thomshutt committed Sep 7, 2022
1 parent c67e917 commit e66b57f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ all: build fmt test

.PHONY: build
build:
go build -ldflags="$(ldflags)" -o "$(GO_BUILD_DIR)catalyst-api" cmd/http-server/http-server.go
go build -ldflags="$(ldflags)" -o "$(GO_BUILD_DIR)catalyst-api" cmd/http-server.go

.PHONY: fmt
fmt:
go fmt ./...

.PHONY: run
run:
go run cmd/http-server/http-server.go
go run cmd/http-server.go

.PHONY: test
test:
Expand Down
File renamed without changes.

0 comments on commit e66b57f

Please sign in to comment.