Remove bad quotes again

This commit is contained in:
Luke Murphy 2020-03-21 01:54:14 +01:00
parent d9d5bbf648
commit b9e031be7d
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 2 additions and 1 deletions

View File

@ -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"
}