From 24d9d0d32aedacca81e8eb3826391fa7321b315f Mon Sep 17 00:00:00 2001 From: Matthew James Kraai Date: Fri, 25 Nov 2022 06:38:00 -0800 Subject: [PATCH] Pass --include to curl `run-tests.py` passes `-include` to curl, which it interprets as `--include --netrc --cookie-jar lude`. Pass `--include` instead. --- run-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests.py b/run-tests.py index 7ce84a11..8d020aa2 100755 --- a/run-tests.py +++ b/run-tests.py @@ -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)