Skip to content

Commit 5b6a91c

Browse files
committed
Start playing around with Linux 4.
1 parent 6685bf7 commit 5b6a91c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

package/packaging_utils.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ def download_wezterm(vendored_dir, wezterm_foldername):
3636
],
3737
check=True,
3838
)
39+
elif platform == "linux":
40+
subprocess.run(
41+
f"{wezterm_zip_path} --appimage-extract"
42+
)
3943
else:
4044
with zipfile.ZipFile(wezterm_zip_path, "r") as zip_ref:
4145
zip_ref.extractall(vendored_dir)

0 commit comments

Comments
 (0)