From 9f87e7870c72b708f68834f14466192c2ade9077 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Tue, 30 Apr 2019 09:18:22 +0100 Subject: [PATCH] build: Fix virtcontainers static check make target The virtcontainers `Makefile` was referencing an old script to handle static checks. Although these are still run if `make` is invoked at the top-level, correct the error. Fixes #1609. Signed-off-by: James O. D. Hunt --- virtcontainers/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtcontainers/Makefile b/virtcontainers/Makefile index 68b613e376..9560c6e0f9 100644 --- a/virtcontainers/Makefile +++ b/virtcontainers/Makefile @@ -46,7 +46,7 @@ binaries: hook kata-shim check: check-go-static check-go-test check-go-static: - bash $(MK_DIR)/../.ci/go-lint.sh + bash $(MK_DIR)/../.ci/static-checks.sh check-go-test: bash $(MK_DIR)/../.ci/go-test.sh \