From: Sébastien Han Date: Tue, 28 Aug 2018 16:42:45 +0000 (-0700) Subject: ceph-ansible-pr-syntax-check: fix typo X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a37a61a3b4cbc717b7ec3de888e89c0276eb6899;p=ceph-build.git ceph-ansible-pr-syntax-check: fix typo The directory we are looking for is called group_vars not group_var Signed-off-by: Sébastien Han --- diff --git a/ceph-ansible-pr-syntax-check/build/build b/ceph-ansible-pr-syntax-check/build/build index 29d48faf..a35f0d16 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."