Skip to content

Fix install path to avoid nested modules folder #144

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion simplex_maya_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,22 @@ def onMayaDroppedPythonFile(obj):
raise RuntimeError("Download of simplex zip failed")

with zipfile.ZipFile(simplex_zip, "r") as zip_ref:
zip_ref.extractall(mod_folder)
for member in zip_ref.namelist():
# Skip anything not in the top-level 'modules/' folder
if not member.startswith("modules/") or member.endswith("/"):
continue

# Strip the 'modules/' prefix
relative_path = member[len("modules/"):]
target = mod_folder / relative_path

# Ensure target folder exists
target.parent.mkdir(parents=True, exist_ok=True)

# Extract the file
with zip_ref.open(member) as source, open(target, "wb") as dest:
dest.write(source.read())

os.remove(simplex_zip)

mayapy = get_mayapy_path()
Expand Down