Skip to content

Commit

Permalink
fix: syntax error comma
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgold committed Jan 8, 2024
1 parent c69ea42 commit 2146059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workspace/build_blender.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def build(tag: str = typer.Option(None, help="Specific tag to check out"), clear
if not lib_dir.exists():
lib_dir.mkdir()
svnpath = f"https://svn.blender.org/svnroot/bf-blender/tags/blender-{major_version}-release/lib/linux_x86_64_glibc_228/"
subprocess.run(["svn", "checkout", svnpath] cwd=lib_dir)
subprocess.run(["svn", "checkout", svnpath], cwd=lib_dir)
elif os_type == "Windows":

build_dir = Path.cwd() / "../build_windows_Bpy_x64_vc17_Release/bin/"
Expand Down

0 comments on commit 2146059

Please sign in to comment.