From 7adbfa935efc750a414098b571b9bde8d99e9031 Mon Sep 17 00:00:00 2001 From: Salvador Fuentes Date: Fri, 22 Jun 2018 15:20:27 -0500 Subject: [PATCH] CI: update static-checks.sh call Now static-checks.sh needs to have the repository name as arguments. Fixes #179. Signed-off-by: Salvador Fuentes --- .ci/lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/lib.sh b/.ci/lib.sh index c5c8582f46..9bca52e6e0 100644 --- a/.ci/lib.sh +++ b/.ci/lib.sh @@ -21,5 +21,5 @@ 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/documentation" }