Skip to content

Commit

Permalink
fix: declare build dir first
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgold committed Jan 14, 2025
1 parent ffcb1e5 commit f1eac93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/buildbpy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -491,8 +491,8 @@ def __init__(
):
super().__init__(version_strategy, root_dir, blender_repo_dir, http_client)
self.lib_path = f"{self.version_strategy.get_svn_root()}linux_x86_64_glibc_228"
self.build_wheel_dir = self.build_dir / "bin"
self.build_dir = self.root_dir / "build_linux_bpy"
self.build_wheel_dir = self.build_dir / "bin"
self.make_command = "make"

def get_blender_binary(self):
Expand Down

0 comments on commit f1eac93

Please sign in to comment.