Skip to content

Commit 6685bf7

Browse files
committed
Start playing around with Linux 3.
1 parent 9e2e168 commit 6685bf7

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

package/packaging_utils.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,7 @@ def download_wezterm(vendored_dir, wezterm_foldername):
2121
if not wezterm_extracted_dir.exists():
2222
print("⬇ Downloading WezTerm...")
2323
vendored_dir.mkdir(parents=True, exist_ok=True)
24-
with requests.get(wezterm_url, stream=True) as response:
25-
response.raise_for_status()
26-
with open(wezterm_zip_path, "wb") as f:
27-
for chunk in response.iter_content(8192):
28-
f.write(chunk)
24+
requests.get(wezterm_url, stream=True)
2925

3026
print("📦 Extracting WezTerm with system unzip...")
3127

0 commit comments

Comments
 (0)