summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonan Le Martret <ronan.lemartret@iot.bzh>2017-06-23 15:08:58 +0200
committerRonan Le Martret <ronan.lemartret@iot.bzh>2017-06-23 15:08:58 +0200
commit228292f1a8b2758cca63c934fdb0762377e5b31a (patch)
treecbe51df2d2b776d5eabe3c204b154f865e7b43e6
parent6359d8079dbc7d8092ebdd47fa64818ac94ea8cb (diff)
Fix glide path
Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index f2f8dd1..1d1e07d 100644
--- a/Makefile
+++ b/Makefile
@@ -93,13 +93,13 @@ package-all:
GOOS=darwin GOARCH=amd64 RELEASE=1 make -f $(ROOT_SRCDIR)/Makefile package
test: tools/glide
- go test --race $(shell ./tools/glide novendor)
+ go test --race $(shell ./tools/linux/glide novendor)
vet: tools/glide
- go vet $(shell ./tools/glide novendor)
+ go vet $(shell ./tools/linux/glide novendor)
fmt: tools/glide
- go fmt $(shell ./tools/glide novendor)
+ go fmt $(shell ./tools/linux/glide novendor)
run: build/xds tools/syncthing/copytobin
$(LOCAL_BINDIR)/xds-agent$(EXT) --log info -c agent-config.json.in
@@ -120,7 +120,7 @@ install: all
mkdir -p $(DESTDIR) && cp $(LOCAL_BINDIR)/* $(DESTDIR)
vendor: tools/glide glide.yaml
- ./tools/glide install --strip-vendor
+ ./tools/linux/glide install --strip-vendor
.PHONY: tools/glide
tools/glide: