Skip to content
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

Double dash parameters don't flow correctly when using multiple script execution #120

Open
xt0rted opened this issue Nov 9, 2022 · 0 comments
Labels
bug Something isn't working

Comments

@xt0rted
Copy link
Owner

xt0rted commented Nov 9, 2022

Given the following:

dotnet r build test publish:* -- --configuration release

It will be expanded to:

dotnet r build --configuration release
dotnet r test --configuration release
dotnet r publish:* --configuration release

This results in the --configuration release portion being treated as two script names due to the missing -- between the script name and parameter list. I don't think this was an issue prior to adding multiple script execution but it definitely is now.

@xt0rted xt0rted added the bug Something isn't working label Nov 9, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant