diff options
author | 2021-09-14 19:35:33 +0200 | |
---|---|---|
committer | 2021-09-14 11:35:33 -0600 | |
commit | 033c341517866c1503f2a4c4596abf514610008d (patch) | |
tree | 4490328c661d4f927ff3888cec3948fb37af1caa | |
parent | 27d90d380937aaf89ee9692d470a043bbc0b418d (diff) | |
download | coredns-033c341517866c1503f2a4c4596abf514610008d.tar.gz coredns-033c341517866c1503f2a4c4596abf514610008d.tar.zst coredns-033c341517866c1503f2a4c4596abf514610008d.zip |
Makefile: add `go get` to install external plugins (#4846)
Fixes #4845
Signed-off-by: Olivier Lemasle <o.lemasle@gmail.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -20,10 +20,12 @@ check: core/plugin/zplugin.go core/dnsserver/zdirectives.go core/plugin/zplugin.go core/dnsserver/zdirectives.go: plugin.cfg go generate coredns.go + go get .PHONY: gen gen: go generate coredns.go + go get .PHONY: pb pb: |