diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-09-01 23:44:09 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-09-01 23:46:07 +0200 |
commit | 0a03293d16ca0fc9f493a58748da1c43d35782e4 (patch) | |
tree | a1ceefdb8b21615de9e34d8da36d805ecb1e7990 /Makefile | |
parent | 70febd225b0255cee6408a97b360f4edb7c7e8e3 (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-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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: |