From 547c477f4e431cc461101064952e3c2fb01058ed Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Mon, 25 Jun 2018 11:51:02 +0100 Subject: [PATCH] CI: Fix static-checks script invocation The `static-checks.sh` script now requires the repo as an argument. Fixes #120. Signed-off-by: James O. D. Hunt --- .ci/lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/lib.sh b/.ci/lib.sh index 4f5486067d..25d30fb552 100644 --- a/.ci/lib.sh +++ b/.ci/lib.sh @@ -21,7 +21,7 @@ clone_tests_repo() run_static_checks() { clone_tests_repo - bash "$tests_repo_dir/.ci/static-checks.sh" + bash "$tests_repo_dir/.ci/static-checks.sh" "github.com/kata-containers/osbuilder" } install_bats()