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
Consider:
#Justfile mod a mod b # a.just import 'lib.just' a: _precompile @echo "a" # b.just import 'lib.just' b: _precompile @echo "b" # lib.just _precompile: @echo "Preparing"
In this example we have the following tree of dependencies:
Justfile / \ a.just b.just / \ lib.just lib.just
This is however incorrectly tagged as a circular dependency:
$ just --unstable a::a error: Import `<path>/lib.just` in `<path>/a.just` is circular
The text was updated successfully, but these errors were encountered:
I wasn't able to reproduce this, and I think this was fixed in #2065. Can you try updating just to version 1.27 or later?
just
Sorry, something went wrong.
No branches or pull requests
Consider:
In this example we have the following tree of dependencies:
This is however incorrectly tagged as a circular dependency:
The text was updated successfully, but these errors were encountered: