Commit a23c523 1 parent 1742c5c commit a23c523 Copy full SHA for a23c523
File tree 4 files changed +6
-3
lines changed
4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- ' feature/*'
7
+ - ' fix/*'
7
8
- ' main'
8
9
9
10
jobs :
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- kitchen-yansible-pusher (0.1.2 )
4
+ kitchen-yansible-pusher (0.1.3 )
5
5
6
6
GEM
7
7
remote: https://rubygems.org/
Original file line number Diff line number Diff line change @@ -148,10 +148,12 @@ def ansible_use_private_key(cmd)
148
148
state = instance . transport . instance_variable_get ( :@connection_options )
149
149
cmd << "--private-key #{ state [ :keys ] [ 0 ] } "
150
150
end
151
+ cmd
151
152
end
152
153
153
154
def ansible_use_vault_password_file ( cmd )
154
- cmd << "--vault-password-file #{ config [ :vault_password_file ] } " if config [ :vault_password_file ]
155
+ cmd << "--vault-password-file #{ config [ :vault_password_file ] } " unless config [ :vault_password_file ] . nil?
156
+ cmd
155
157
end
156
158
157
159
def ansible_verbosity ( cmd )
Original file line number Diff line number Diff line change 3
3
module Kitchen
4
4
module Yansible
5
5
module Pusher
6
- VERSION = "0.1.2 "
6
+ VERSION = "0.1.3 "
7
7
end
8
8
end
9
9
end
You can’t perform that action at this time.
0 commit comments