From a37a61a3b4cbc717b7ec3de888e89c0276eb6899 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Han?= Date: Tue, 28 Aug 2018 09:42:45 -0700 Subject: [PATCH] ceph-ansible-pr-syntax-check: fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The directory we are looking for is called group_vars not group_var Signed-off-by: Sébastien Han --- ceph-ansible-pr-syntax-check/build/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph-ansible-pr-syntax-check/build/build b/ceph-ansible-pr-syntax-check/build/build index 29d48faf7..a35f0d168 100644 --- a/ceph-ansible-pr-syntax-check/build/build +++ b/ceph-ansible-pr-syntax-check/build/build @@ -39,7 +39,7 @@ function group_vars_check { fi # we use || true so we still count and don't fail if we don't find anything - nb_group_vars=$(match_file "group_var/" | wc -l) + nb_group_vars=$(match_file "group_vars/" | wc -l) if [[ "$nb" -ne "$nb_group_vars" ]]; then echo "One or more files containing default variables has/have been modified." echo "You must run 'generate_group_vars_sample.sh' to generate the group_vars template files." -- 2.47.3