Skip to content

Commit 8839df0

Browse files
author
Aaron Schlesinger
committed
fix(Makefile): build non-vendor packages
1 parent 94cc2e3 commit 8839df0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ VERSION := 0.0.1-$(shell date "+%Y%m%d%H%M%S")
1414
# Common flags passed into Go's linker.
1515
LDFLAGS := "-s -X main.version=${VERSION}"
1616

17-
TEST_PACKAGES := $(shell glide nv)
17+
NV_PKGS := $(shell glide nv)
1818

1919
all: build test
2020

2121
# This builds .a files, which will be placed in $GOPATH/pkg
2222
build:
23-
go build ./...
23+
go build ${NV_PKGS}
2424

2525
test:
26-
go test ${TEST_PACKAGES}
26+
go test ${NV_PKGS}
2727

2828

2929
.PHONY: all build test

0 commit comments

Comments
 (0)