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
If we run dotnet fsdocs build --parameters foo bar yoshi sbubby, the command tool prints
dotnet fsdocs build --parameters foo bar yoshi sbubby
Substitutions/parameters: foo --> bar bar --> yoshi yoshi --> sbubby
while the correct answer should have been
Substitutions/parameters: foo --> bar yoshi --> sbubby
Moreover, if we pass an odd number of arguments to --parameters the tool should fail but it doesn't.
--parameters
The problem is that the function that parses the arguments uses Seq.pairwise which groups the items of a sequence in overlapping pairs.
Seq.pairwise
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
If we run
dotnet fsdocs build --parameters foo bar yoshi sbubby
, the command tool printswhile the correct answer should have been
Moreover, if we pass an odd number of arguments to
--parameters
the tool should fail but it doesn't.The problem is that the function that parses the arguments uses
Seq.pairwise
which groups the items of a sequence in overlapping pairs.The text was updated successfully, but these errors were encountered: