We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When adding application specific python paths for example we need to replace the "" with "/"
The .toml files support relative paths with the format approach : {AVALON_CORE} Extending the support to normalized path seems logic .
.toml
format
{AVALON_CORE}
Together with recreating the absolute convert the path to the OS normalized path.
# pseudo code absolute_path =string.format(os.environ[**keys]) os_supported_path = os.path.normpath(absolute_path)
The text was updated successfully, but these errors were encountered:
Sorry I missed this @aardschok, I'm sure you've moved on since then, but I think this is a solid idea.
Sorry, something went wrong.
I have moved in the meantime yes. Good to here you like the idea 👍
No branches or pull requests
Issue
When adding application specific python paths for example we need to replace the "" with "/"
Motivation
The
.toml
files support relative paths with theformat
approach :{AVALON_CORE}
Extending the support to normalized path seems logic .
Proposal
Together with recreating the absolute convert the path to the OS normalized path.
The text was updated successfully, but these errors were encountered: