Skip to content
Snippets Groups Projects
Unverified Commit 4b6318b2 authored by Dawid Dziurla's avatar Dawid Dziurla
Browse files

curl: allow passing print_stdout parameter

parent 36c35efc
No related branches found
No related tags found
No related merge requests found
...@@ -81,8 +81,8 @@ def curl_with_workarounds(*args, secrets: nil, print_stdout: nil, print_stderr: ...@@ -81,8 +81,8 @@ def curl_with_workarounds(*args, secrets: nil, print_stdout: nil, print_stderr:
result result
end end
def curl(*args, **options) def curl(*args, print_stdout: true, **options)
result = curl_with_workarounds(*args, print_stdout: true, **options) result = curl_with_workarounds(*args, print_stdout: print_stdout, **options)
result.assert_success! result.assert_success!
result result
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment