From d81f2f0cbe4fe4167f23f330238bd293ac4b0031 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Fri, 20 Mar 2020 00:51:52 +0100 Subject: [PATCH] Get slashes right --- functions | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions b/functions index c19fb0c..79a1eb0 100755 --- a/functions +++ b/functions @@ -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 }