Skip to content

Commit

Permalink
pex is now in zip format
Browse files Browse the repository at this point in the history
  • Loading branch information
da-liii committed Apr 2, 2024
1 parent ff7674d commit e5b4740
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def install_win(name):
pex = binary.joinpath(name + ".pex")
entry = binary.joinpath("plugins").joinpath(name + ".py")
os.chdir(binary)
subprocess.call(["tar", "xzvf", pex])
subprocess.call(["unzip", pex])
os.remove(binary.joinpath("PEX-INFO"))
os.remove(binary.joinpath("__main__.py"))
os.remove(pex)
Expand Down

0 comments on commit e5b4740

Please sign in to comment.