Skip to content

Commit

Permalink
Merge pull request DLR-RM#413 from marcelhohn/iss_412_fix_windows_fin…
Browse files Browse the repository at this point in the history
…d_blender_exec

fix(utility): Set correct blender_run_path
  • Loading branch information
themasterlink authored Dec 20, 2021
2 parents 2d6e3fe + 4aea6ab commit db04f23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blenderproc/python/utility/InstallUtility.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def __call__(self, block_num, block_size, total_size):
elif platform == "darwin":
blender_run_path = os.path.join(blender_path, "Contents", "MacOS", "Blender")
elif platform == "win32":
blender_run_path = os.path.join(blender_install_path, "blender-windows64", "blender")
blender_run_path = os.path.join(blender_install_path, blender_version, "blender")
else:
raise Exception("This system is not supported yet: {}".format(platform))

Expand Down

0 comments on commit db04f23

Please sign in to comment.