Skip to content

Commit acdaada

Browse files
committed
Start playing around with Linux 8.
1 parent 3f1ef5c commit acdaada

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package/packaging_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def download_wezterm(vendored_dir, wezterm_foldername):
1515
print(wezterm_url)
1616

1717
wezterm_extracted_dir = vendored_dir / wezterm_foldername
18-
wezterm_zip_path = vendored_dir / f"{wezterm_foldername}" # .zip"
18+
wezterm_zip_path = vendored_dir / f"{wezterm_foldername}" # .zip"
1919

2020
# Step 1: Download and extract WezTerm if missing
2121
if not wezterm_extracted_dir.exists():
@@ -43,7 +43,7 @@ def download_wezterm(vendored_dir, wezterm_foldername):
4343
elif platform == "linux":
4444
subprocess.run(
4545
f"chmod +x wezterm_zip_path; {wezterm_zip_path} --appimage-extract",
46-
shell=True
46+
shell=True,
4747
)
4848
else:
4949
with zipfile.ZipFile(wezterm_zip_path, "r") as zip_ref:

0 commit comments

Comments
 (0)