Skip to content
Snippets Groups Projects
Commit 0ec47813 authored by Stefan Sundin's avatar Stefan Sundin
Browse files

Prevent .curlrc from being loaded.

parent 94c0d833
No related branches found
No related tags found
No related merge requests found
......@@ -48,6 +48,7 @@ fetch() {
local temporary_path
curl_args=(
-q # do not load .curlrc (must be the first argument)
--fail
--remote-time
--location
......
require "utils/curl"
describe "curl" do
describe "curl_args" do
it "returns -q as the first argument" do
# -q must be the first argument according to "man curl"
expect(curl_args("foo")[1]).to eq("-q")
end
end
end
......@@ -14,6 +14,7 @@ end
def curl_args(*extra_args, show_output: false, user_agent: :default)
args = [
curl_executable.to_s,
"-q", # do not load .curlrc (must be the first argument)
"--show-error",
]
......
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