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
I would like to have an output option that simply output the path to the opam file of the selected package. For example:
opam
for f in $(opam admin list --latests-only --has-tag='org:erratique'); …
Somehow I worked around by deleting all the other packages via opam admin filter and then restoring them but it's a bit silly.
opam admin filter
The text was updated successfully, but these errors were encountered:
As a quick workaround you can use the following which should work in all possible cases:
for f in $(opam admin list --latests-only --has-tag='org:erratique'); do f=$(find packages -path "packages/*/$f/opam" -print0) [...] done
Sorry, something went wrong.
No branches or pull requests
I would like to have an output option that simply output the path to the
opam
file of the selected package. For example:Somehow I worked around by deleting all the other packages via
opam admin filter
and then restoring them but it's a bit silly.The text was updated successfully, but these errors were encountered: