Skip to content

Commit

Permalink
Minor Makefile fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mxpv committed Nov 23, 2019
1 parent 5a85228 commit 641b352
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ build:
#
.PHONY: docker
docker:
docker build -t mxpv/podsync:latest .
GOOS=linux GOARCH=amd64 go build -o podsync ./cmd/podsync
docker build -t mxpv/podsync:unstable .
docker push mxpv/podsync:unstable

#
# Pull GolangCI-Lint dependency
Expand All @@ -37,4 +39,4 @@ lint: $(GOLANGCI)
#
.PHONY: test
test:
go test ./...
go test -v ./...

0 comments on commit 641b352

Please sign in to comment.