aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-09-01 23:44:09 +0200
committerToni Uhlig <matzeton@googlemail.com>2020-09-01 23:46:07 +0200
commit0a03293d16ca0fc9f493a58748da1c43d35782e4 (patch)
treea1ceefdb8b21615de9e34d8da36d805ecb1e7990 /Makefile
parent70febd225b0255cee6408a97b360f4edb7c7e8e3 (diff)
go-dashboard: go mod/vendor support + termdash text user interface
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b3d942d1f..f978c5492 100644
--- a/Makefile
+++ b/Makefile
@@ -87,7 +87,8 @@ endif
examples/go-dashboard/go-dashboard: examples/go-dashboard/main.go
ifneq ($(GOCC),)
- $(GOCC) build -o examples/go-dashboard/go-dashboard $(GOFLAGS) examples/go-dashboard/main.go
+ cd examples/go-dashboard && GO111MODULE=on $(GOCC) mod vendor
+ cd examples/go-dashboard && GO111MODULE=on $(GOCC) build $(GOFLAGS) .
endif
clean: