Skip to content

Commit

Permalink
Store full path to the fixture dir in state file
Browse files Browse the repository at this point in the history
  • Loading branch information
pchakraborty committed May 13, 2024
1 parent 595dcc7 commit 1bc8330
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mepo/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def registry_to_component(self, comp_name, comp_details, comp_style):
self.fixture = comp_details.get("fixture", False)
# local/remote - start
if self.fixture:
self.local = "."
self.local = os.path.abspath(".")
repo_url = get_current_remote_url()
p = urlparse(repo_url)
last_url_node = p.path.rsplit("/")[-1]
Expand Down

0 comments on commit 1bc8330

Please sign in to comment.