-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
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
Feature Request: Add Base.active_manifest
#57924
Comments
Lines 821 to 857 in a046da5
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is analogous to
Base.active_project
and returns the path of the active manifest file. This function likely doesn't exist yet because people assume it can be spelledjoinpath(Base.active_project(), "Manifest.toml")
which will work ~90% of the time, but the manifest can be calledJuliaManifest.toml
or[email protected]
or if the Project.toml is using the[workspace]
section, can live in a completely separate directory and be named anything.Pkg has this information at
Pkg.Types.EnvCache().manifest_file
but that is pretty deep internals to Pkg and thus probably shouldn't be relied on.The text was updated successfully, but these errors were encountered: