jstastny-cz opened a new issue, #3777:
URL: https://github.com/apache/incubator-kie-tools/issues/3777

   When using conditional expressions like:
   ```
   run-script-if --bool $([ $(command -v docker) ] && echo true || echo false)
   ```
   there is an issue if `command -v docker` returns string containing space 
(e.g. in WSL while running Rancher desktop). Surrounding the command in 
double-quotes resolve that issue `--bool $([ "$(command -v docker)" ] && echo 
true || echo false)`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to