Fix input syntax in CLI help example - #140
Merged
Merged
Conversation
brbousnguar
force-pushed
the
fix/issue-113
branch
from
July 27, 2026 12:27
8322a7e to
de3ae2e
Compare
Contributor
|
@brbousnguar thanks for your contribution! In order to proceed with the merge, the commits must have verified signatures. Can you please verify it. Thanks! |
Contributor
Author
|
Thanks for the review and approval! I'll re-sign the commit with a GitHub-verified signature and update the branch shortly. |
brbousnguar
force-pushed
the
fix/issue-113
branch
from
July 30, 2026 19:03
de3ae2e to
5e27865
Compare
Contributor
Author
|
The commit is now re-signed and GitHub shows it as Verified ( The Build Native CLI workflow was re-triggered by the signed commit and is currently awaiting approval to run. Thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What Problem This Solves
The input example shown by
dw --helpand reproduced in the README uses a space between the input name and path. Picocli parses the-ioption as a map, so its required syntax isname=path; copying the existing example results in a command that does not run.Why This Change Was Made
-i payload=<fullPathToUser.json>.name=pathinput form.User Impact
Users can copy the input-file example from
dw --helpor the README and run it successfully.Evidence
./gradlew native-cli:testDataWeaveCLITesttests and 1DependencyManagerTest)git diff --checkFixes #113