Skip to content

Commit

Permalink
Checking to see if a hard-coded path was the reason for the compile f…
Browse files Browse the repository at this point in the history
…ailure
  • Loading branch information
jmwright committed Nov 6, 2024
1 parent d769bcb commit dfffae8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mechanical/assembly_renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@

from nimble_build_system.cad.shelf import create_shelf_for

assembly_definition_file = "../build/assembly-def.yaml"
render_destination = "../build/assembly-docs"
print(os.getcwd())

assembly_definition_file = "../build/assembly-def.yaml"
render_destination = os.path.join(os.getcwd(), "assembly-docs")

class PartDefinition:
"""
Expand Down

0 comments on commit dfffae8

Please sign in to comment.