Skip to content

Weekly Update #3

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

Merged
merged 5 commits into from
Jul 14, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
minor fix
  • Loading branch information
losanc committed Jul 13, 2022
commit cf0adcbbf03a57cb8b92145889c2086b8fd2c98f
8 changes: 4 additions & 4 deletions build_addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
import os
from datetime import date


addondirectory = 'simloader'
addondirectory = 'bseq'
templatedirectory = 'template'
additionaldirectory = 'additional_file_formats'
meshiodirectory = 'extern/meshio/src/meshio'
fileseqdirectory = 'extern/fileseq/src/fileseq'
futuredirectory = 'extern/python-future/src/future'
richdirectory = 'extern/rich/rich'
foldername = 'blendersequenceloader/'

dirs = {
addondirectory: addondirectory,
Expand All @@ -32,8 +32,8 @@
filepath = os.path.join(subdir, file)
relative_path = os.path.relpath(filepath, k)
endpath = os.path.join(v, relative_path)
endpath = os.path.join('simloaderaddon/', endpath)
endpath = os.path.join(foldername, endpath)
addonzip.write(filepath, endpath)

# write init.py
addonzip.write('__init__.py', 'simloaderaddon/__init__.py')
addonzip.write('__init__.py', foldername + '__init__.py')