From 6d81ddde2d8901447b8659ac5e4653af0379202c Mon Sep 17 00:00:00 2001 From: Bastian de Byl Date: Fri, 25 Sep 2020 14:34:55 -0400 Subject: [PATCH] Removed double quotes which drone-ci escapes --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index f68f02a..e7f56bd 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,7 +10,7 @@ steps: - name: lint image: bdebyl/yamllint command: - - export YML_FILES="$(find $PWD/ansible/ -name '*.yml' -not -name '*vault*')" - - source "$PWD/.lint-vars.sh" - - ansible-lint -x "$ANSIBLE_LINT_SKIP_LIST" "$YML_FILES" - - yamllint "$YML_FILES" + - export YML_FILES=$(find ansible/ -name '*.yml' -not -name '*vault*') + - source $PWD/.lint-vars.sh + - ansible-lint -x $ANSIBLE_LINT_SKIP_LIST $YML_FILES + - yamllint $YML_FILES