Skip to content

Commit c6a36e4

Browse files
committed
Correct path to ca_file
1 parent 31432b8 commit c6a36e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/code_climate/test_reporter/client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def http_client(uri)
6666
if uri.scheme == "https"
6767
http.use_ssl = true
6868
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
69-
http.ca_file = File.expand_path('../../config/cacert.pem', __FILE__)
69+
http.ca_file = File.expand_path('../../../../config/cacert.pem', __FILE__)
7070
http.verify_depth = 5
7171
end
7272
http.open_timeout = 5 # in seconds

0 commit comments

Comments
 (0)