Remove rogue character from ANSIBLE_ROLE_DIR test

Change-Id: Ief22c14f5cec2d6dfa3c2e547674be6a30c3e424
This commit is contained in:
Jesse Pretorius 2016-09-26 17:47:44 +01:00
parent 762216462b
commit 596af00f17
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ fi
# Download the Ansible role repositories if they are not present on the host.
# This is ignored if there is no ansible-role-requirements file.
if [ ! -d "${ANSIBLE_ROLE_DIR}s" ] && [ -f "${ANSIBLE_ROLE_REQUIREMENTS_PATH}" ]; then
if [ ! -d "${ANSIBLE_ROLE_DIR}" ] && [ -f "${ANSIBLE_ROLE_REQUIREMENTS_PATH}" ]; then
ansible-galaxy install \
--role-file="${ANSIBLE_ROLE_REQUIREMENTS_PATH}" \
--roles-path "${ANSIBLE_ROLE_DIR}" \