From e36477877111742e3daf82bee47926d4b2ecb913 Mon Sep 17 00:00:00 2001 From: paulfantom Date: Wed, 7 Jul 2021 10:03:40 +0200 Subject: [PATCH] *: add "update" target to makefile and use it in automatic updater Signed-off-by: paulfantom --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 54c18d3b..d011a2fb 100644 --- a/Makefile +++ b/Makefile @@ -33,6 +33,10 @@ vendor: $(JB_BIN) jsonnetfile.json jsonnetfile.lock.json rm -rf vendor $(JB_BIN) install +.PHONY: update +update: $(JB_BIN) + $(JB_BIN) update + .PHONY: fmt fmt: $(JSONNETFMT_BIN) find . -name 'vendor' -prune -o -name '*.libsonnet' -o -name '*.jsonnet' -print | \