From 97983d7e2ea90fc5cf72208d32989478ed2dad35 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Fri, 20 Mar 2020 00:45:06 +0100 Subject: [PATCH] Try to use right paths and lessen verbosity --- functions | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions b/functions index 7d3ce21..f678bdb 100755 --- a/functions +++ b/functions @@ -20,15 +20,15 @@ function run_playbook() { dokku_col_log_info1_quiet "$requirements file found" ansible-galaxy \ install \ - -vvv --force \ - --roles-path "./roles" \ + --force \ + --roles-path "$(pwd)/roles" \ --role-file "$requirements" fi dokku_col_log_info1_quiet "$play_path file found" ansible-playbook \ --inventory "$(hostname)", \ - --module-path "./roles/*/library/" \ + --module-path "$(pwd)/roles/*/library" \ --connection local \ "$play_path"