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
source <(mvnd --completion bash)
When issuing
the completion script appears in the console, but the completion is not sourced.
Similarly, when piping the output of --completion bahs to wc the count is zero
--completion bahs
wc
mvnd --completion bash | wc [the whole completion script here] 0 0 0
Workaround: adding 2>&1 makes it work:
2>&1
mvnd --completion bash 2>&1 | wc 358 1259 20910
The text was updated successfully, but these errors were encountered:
The upgrade to JLine must be the cause. JLine and mvnd now better supports out and err streams. I think the line
out
err
maven-mvnd/client/src/main/java-mvnd/org/mvndaemon/mvnd/client/DefaultClient.java
Line 223 in e10aecd
Message.out(xxx)
Sorry, something went wrong.
Make sure to print the completion script to the standard output stream (
303fcc6
fix apache#785)
45496af
No branches or pull requests
When issuing
the completion script appears in the console, but the completion is not sourced.
Similarly, when piping the output of
--completion bahs
towc
the count is zeroWorkaround: adding
2>&1
makes it work:The text was updated successfully, but these errors were encountered: