Skip to content
This repository was archived by the owner on Apr 7, 2025. It is now read-only.

Commit 6ea7316

Browse files
committed
Fix quotes
1 parent 6a8fabb commit 6ea7316

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/kitchen-ansible/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Kitchen
22
module AnsiblePush
3-
VERSION = '0.7.0'.freeze
3+
VERSION = '0.7.1'.freeze
44
end
55
end

lib/kitchen/provisioner/ansible_push.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ def options
129129
options << '--diff' if conf[:diff]
130130
options << '--ask-vault-pass' if conf[:ask_vault_pass]
131131
options << "--vault-password-file=#{conf[:vault_password_file]}" if conf[:vault_password_file]
132-
options << '--tags=#{as_list_argument(conf[:tags])}' if conf[:tags]
133-
options << '--skip-tags=#{as_list_argument(conf[:skip_tags])}' if conf[:skip_tags]
132+
options << "--tags=#{as_list_argument(conf[:tags])}" if conf[:tags]
133+
options << "--skip-tags=#{as_list_argument(conf[:skip_tags])}" if conf[:skip_tags]
134134
options << "--start-at-task=#{conf[:start_at_task]}" if conf[:start_at_task]
135135
options << "--inventory-file=#{conf[:generate_inv_path]}" if conf[:generate_inv]
136136
options << verbosity_argument.to_s if conf[:verbose]

0 commit comments

Comments
 (0)