From d9d5bbf64816d794502b0d1b2dd96581f4a2b45c Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sat, 21 Mar 2020 01:51:32 +0100 Subject: [PATCH] Fix quoting and spacing --- functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions b/functions index e1e6fb3..9cad702 100755 --- a/functions +++ b/functions @@ -32,11 +32,11 @@ function run_playbook() { mkdir -p $DOKKU_ROOT/.ansible/{roles,plugins/modules} cp -R $DOKKU_ROOT/.ansible/roles/*/library/* $DOKKU_ROOT/.ansible/plugins/modules - local args="--inventory "$(hostname)", --connection local" + local args="--inventory $(hostname), --connection local" if [[ -f "$vault_file" ]]; then dokku_col_log_info1_quiet "$vault_file file found" - args+="--vault-password-file \"$vault_file\"" + args+=" --vault-password-file \"$vault_file\"" fi dokku_col_log_info1_quiet "$play_path file found"