Skip to content
This repository has been archived by the owner on Mar 22, 2022. It is now read-only.

Commit

Permalink
Merge pull request #45 from ndeloof/master
Browse files Browse the repository at this point in the history
compose-spec is public so we don't need GOPRIVATE anymore
  • Loading branch information
glours authored Apr 9, 2020
2 parents 70a402a + c13c5d6 commit e8730c5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,18 @@

.DEFAULT_GOAL := help

PACKAGE=github.com/compose-spec/compose-ref
IMAGE_PREFIX=composespec/compose-ref-

GOFLAGS=-mod=vendor

.PHONY: build
build: ## Build compose-ref binary
@mkdir -p bin/
GOPRIVATE=$(PACKAGE) GOFLAGS=$(GOFLAGS) go build -o bin/compose-ref compose-ref.go
GOFLAGS=$(GOFLAGS) go build -o bin/compose-ref compose-ref.go

.PHONY: test
test: ## Run tests
GOPRIVATE=$(PACKAGE) GOFLAGS=$(GOFLAGS) go test ./... -v
GOFLAGS=$(GOFLAGS) go test ./... -v

.PHONY: fmt
fmt: ## Format go files
Expand Down

0 comments on commit e8730c5

Please sign in to comment.