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
Using a path outside the workspace is not well supported nor checked:
%{dep:/home/user/foo.txt}
%{dep:../foo.txt}
_build/foo.txt
%{dep:../../foo.txt}
Tests in #4035
I would have wanted to support such user dependencies (backtracking/mlpost#14), as we do for absolute path:
copy_files
(EDIT: absolute path works in dev)
The text was updated successfully, but these errors were encountered:
Meeting:
Sorry, something went wrong.
No branches or pull requests
Expected Behavior
Don't raise an exception ;)already the caseActual Behavior
Using a path outside the workspace is not well supported nor checked:
%{dep:/home/user/foo.txt}
raise an exception when translating it to internal path(failed only for <= 2.7)%{dep:../foo.txt}
in a dune file at the root of the workspace is accepted even if it corresponds to_build/foo.txt
.%{dep:../../foo.txt}
in a dune file at the root of the workspace is refused with a nice message.Reproduction
Tests in #4035
Additional information
I would have wanted to support such user dependencies (backtracking/mlpost#14), as we do for absolute path:
copy_files
stanza.(EDIT: absolute path works in dev)
The text was updated successfully, but these errors were encountered: