Makefile: use go get instead of go install to install packages

This commit is contained in:
Cheer Xiao 2014-02-10 13:22:03 +08:00
parent 5318413ef0
commit 9454b2f67a

View File

@ -6,10 +6,10 @@ PKG_COVERAGES := $(addprefix coverage/,$(PKGS))
all: elvish elvishd test
elvish:
go install .
go get .
elvishd:
go install ./elvishd
go get ./elvishd
test:
go test $(PKG_PATHS)