Skip to content

Commit 0655ffa

Browse files
authored
ignore stderr varialbe
1 parent 591eafa commit 0655ffa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: spec/helper/get_docker_params_changed.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def get_docker_params_changed(opts)
66
return_value = 'No changes detected'
77

88
if opts['sanitised_title'] && opts['osfamily']
9-
stdout, stderr, status = Open3.capture3("docker inspect #{opts['sanitised_title']}")
9+
stdout, _stderr, status = Open3.capture3("docker inspect #{opts['sanitised_title']}")
1010
if status.to_s.include?('exit 0')
1111
param_changed = false
1212
inspect_hash = JSON.parse(stdout)[0]

0 commit comments

Comments
 (0)