From b9e031be7dfc12ed7d99e1bb0d9e4982988e5e2e Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sat, 21 Mar 2020 01:54:14 +0100 Subject: [PATCH] Remove bad quotes again --- functions | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions b/functions index 9cad702..22b1f8a 100755 --- a/functions +++ b/functions @@ -36,9 +36,10 @@ function run_playbook() { 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" + dokku_col_log_info1_quiet "running ansible-playbook with $args" ansible-playbook "$args" "$play_path" }