Get slashes right

This commit is contained in:
Luke Murphy 2020-03-20 00:51:52 +01:00
parent 040492d889
commit d81f2f0cbe
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ function run_playbook() {
exit 0
fi
pushd "$DOKKU_LIB_ROOT/data/ansible/$APP/" >/dev/null
pushd "$DOKKU_LIB_ROOT/data/ansible/$APP" >/dev/null
if [[ -f "$requirements" ]]; then
dokku_col_log_info1_quiet "$requirements file found"
@ -29,8 +29,8 @@ function run_playbook() {
ansible-playbook \
--inventory "$(hostname)", \
--connection local \
"$play_path"
--module-path "$(pwd)/roles/*/library" \
"$play_path" \
--module-path "$(pwd)/roles/*/library"
popd >/dev/null
}