Browse Source

Use proper shell expansion in Makefile

pull/129/head
Carlos Diaz-Padron 11 years ago
parent
commit
4d0f06c2f5
  1. 2
      Makefile

2
Makefile

@ -1,4 +1,4 @@
DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
DEPS = $(shell go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
all: deps
@mkdir -p bin/

Loading…
Cancel
Save