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

Commit e8730c5

Browse files
authored
Merge pull request #45 from ndeloof/master
compose-spec is public so we don't need GOPRIVATE anymore
2 parents 70a402a + c13c5d6 commit e8730c5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,18 @@
1414

1515
.DEFAULT_GOAL := help
1616

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

2019
GOFLAGS=-mod=vendor
2120

2221
.PHONY: build
2322
build: ## Build compose-ref binary
2423
@mkdir -p bin/
25-
GOPRIVATE=$(PACKAGE) GOFLAGS=$(GOFLAGS) go build -o bin/compose-ref compose-ref.go
24+
GOFLAGS=$(GOFLAGS) go build -o bin/compose-ref compose-ref.go
2625

2726
.PHONY: test
2827
test: ## Run tests
29-
GOPRIVATE=$(PACKAGE) GOFLAGS=$(GOFLAGS) go test ./... -v
28+
GOFLAGS=$(GOFLAGS) go test ./... -v
3029

3130
.PHONY: fmt
3231
fmt: ## Format go files

0 commit comments

Comments
 (0)