Skip to content

Commit 8e9291f

Browse files
committed
Fix path construction
1 parent 0d53cfc commit 8e9291f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyperformance/_pyproject_toml.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def load_pyproject_toml(filename, *, name=None, tools=None, requirefiles=True):
8585
with open(filename, encoding="utf-8") as infile:
8686
text = infile.read()
8787

88-
symlink = os.path.join(os.path.dirname(filename), text.strip())
88+
symlink = os.path.abspath(os.path.join(os.path.dirname(filename), text.strip()))
8989
print(filename, symlink)
9090
if os.path.isfile(symlink):
9191
print('following')

0 commit comments

Comments
 (0)