Skip to content

Commit

Permalink
Merge pull request #1296 from kraai/curl-include-option
Browse files Browse the repository at this point in the history
Pass --include to curl
  • Loading branch information
fviard authored Oct 20, 2023
2 parents c859a29 + 24d9d0d commit 323fa07
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 323fa07

Please sign in to comment.