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 <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt 2018-06-25 11:51:02 +01:00
parent 72dca93263
commit 547c477f4e

View File

@ -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()