Skip to content

Commit

Permalink
Add missing FileSequence install code
Browse files Browse the repository at this point in the history
  • Loading branch information
n-jay committed Nov 6, 2023
1 parent 27991c1 commit 8e3e12d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cuesubmit/plugins/OpenCue/Setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,11 @@ def installModule():
opencue_directory = "pycue/opencue"

pyoutline_path = os.path.join(opencue_home, pyoutline_directory)
filesequence_path = os.path.join(opencue_home, filesequence_directory)
opencue_path = os.path.join(opencue_home, opencue_directory)

subprocess.call(["cp", "-r", pyoutline_path, blender_dependencies_path])
subprocess.call(["cp", "-r", filesequence_path, blender_dependencies_path])
subprocess.call(["cp", "-r", opencue_path, blender_dependencies_path])

def removeModule():
Expand Down

0 comments on commit 8e3e12d

Please sign in to comment.