Skip to content

Commit

Permalink
Pass --include to curl
Browse files Browse the repository at this point in the history
`run-tests.py` passes `-include` to curl, which it interprets as
`--include --netrc --cookie-jar lude`.  Pass `--include` instead.
  • Loading branch information
kraai committed Nov 25, 2022
1 parent 6f3e1ba commit 24d9d0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def test_copy(label, src_file, dst_file):
return test(label, cmd)

def test_curl_HEAD(label, src_file, **kwargs):
cmd = ['curl', '--silent', '--head', '-include', '--location']
cmd = ['curl', '--silent', '--head', '--include', '--location']
cmd.append(src_file)
return test(label, cmd, **kwargs)

Expand Down

0 comments on commit 24d9d0d

Please sign in to comment.