Skip to content

Commit 59eef10

Browse files
committed
chore: force http/1.1 when fetching drivers
1 parent c65c9db commit 59eef10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
if not os.path.exists("driver/" + zip_file):
3636
url = "https://playwright.azureedge.net/builds/cli/next/" + zip_file
3737
print("Fetching ", url)
38-
subprocess.check_call(["curl", url, "-o", "driver/" + zip_file])
38+
subprocess.check_call(["curl", "--http1.1", url, "-o", "driver/" + zip_file])
3939

4040
_dirname = get_file_dirname()
4141
_build_dir = _dirname / "build"

0 commit comments

Comments
 (0)