Skip to content

Commit

Permalink
Fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ahelal committed Jul 7, 2017
1 parent 6a8fabb commit 6ea7316
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/kitchen-ansible/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Kitchen
module AnsiblePush
VERSION = '0.7.0'.freeze
VERSION = '0.7.1'.freeze
end
end
4 changes: 2 additions & 2 deletions lib/kitchen/provisioner/ansible_push.rb
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ def options
options << '--diff' if conf[:diff]
options << '--ask-vault-pass' if conf[:ask_vault_pass]
options << "--vault-password-file=#{conf[:vault_password_file]}" if conf[:vault_password_file]
options << '--tags=#{as_list_argument(conf[:tags])}' if conf[:tags]
options << '--skip-tags=#{as_list_argument(conf[:skip_tags])}' if conf[:skip_tags]
options << "--tags=#{as_list_argument(conf[:tags])}" if conf[:tags]
options << "--skip-tags=#{as_list_argument(conf[:skip_tags])}" if conf[:skip_tags]
options << "--start-at-task=#{conf[:start_at_task]}" if conf[:start_at_task]
options << "--inventory-file=#{conf[:generate_inv_path]}" if conf[:generate_inv]
options << verbosity_argument.to_s if conf[:verbose]
Expand Down

0 comments on commit 6ea7316

Please sign in to comment.