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
under windows some how the variables are not parsed into json correctly.
guajillo salt-run test.arg test1 test2='["test","test2"]'
gives the following.
"return": [ { "saltmaster": { "fun": "runner.test.arg", "jid": "20241108074401655654", "user": "whytewolf", "fun_args": [ "test1", { "test2": "[test,test2]" } ], "_stamp": "2024-11-08T07:44:02.487331", "return": { "args": [ "test1" ], "kwargs": { "test2": "[test,test2]" } }, "success": true } } ]
test2 should be a list of 2 items, not a str. i believe powershell is stripping out the double qoutes
The text was updated successfully, but these errors were encountered:
No branches or pull requests
under windows some how the variables are not parsed into json correctly.
guajillo salt-run test.arg test1 test2='["test","test2"]'
gives the following.
test2 should be a list of 2 items, not a str. i believe powershell is stripping out the double qoutes
The text was updated successfully, but these errors were encountered: