We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d53cfc commit 8e9291fCopy full SHA for 8e9291f
pyperformance/_pyproject_toml.py
@@ -85,7 +85,7 @@ def load_pyproject_toml(filename, *, name=None, tools=None, requirefiles=True):
85
with open(filename, encoding="utf-8") as infile:
86
text = infile.read()
87
88
- symlink = os.path.join(os.path.dirname(filename), text.strip())
+ symlink = os.path.abspath(os.path.join(os.path.dirname(filename), text.strip()))
89
print(filename, symlink)
90
if os.path.isfile(symlink):
91
print('following')
0 commit comments