Skip to content

Commit 3f1ef5c

Browse files
committed
Start playing around with Linux 7.
1 parent 9c95587 commit 3f1ef5c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

package/packaging_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ def download_wezterm(vendored_dir, wezterm_foldername):
4242
)
4343
elif platform == "linux":
4444
subprocess.run(
45-
f"{wezterm_zip_path} --appimage-extract"
45+
f"chmod +x wezterm_zip_path; {wezterm_zip_path} --appimage-extract",
46+
shell=True
4647
)
4748
else:
4849
with zipfile.ZipFile(wezterm_zip_path, "r") as zip_ref:

0 commit comments

Comments
 (0)