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
CommandBuilder
This needs to be thought out a lot more, but essentially I would like all of these to execute in parallel:
const cmd1 = $`echo 1`; const cmd2 = $`echo 2`; const cmd3 = $`echo 3`; await $`echo ${cmd1} ${cmd2} ${cmd3}`;
And none of these to execute because it errors before the relevant pipeline occurs:
const cmd1 = $`echo 1`; const cmd2 = $`echo 2`; const cmd3 = $`echo 3`; await $`exit 1 && echo ${cmd1} ${cmd2} ${cmd3}`;
It should work when provided to a string like so:
const cmd1 = $`echo 1`; await $`echo 'example ${cmd1} example'`;
This needs a ton of thought especially around error handling. Probably there will need to be something done in deno_task_shell to make it work well.
The text was updated successfully, but these errors were encountered:
Thank you for the excellent error message that leads here and more broadly for dax 💯
dax
Sorry, something went wrong.
No branches or pull requests
This needs to be thought out a lot more, but essentially I would like all of these to execute in parallel:
And none of these to execute because it errors before the relevant pipeline occurs:
It should work when provided to a string like so:
This needs a ton of thought especially around error handling. Probably there will need to be something done in deno_task_shell to make it work well.
The text was updated successfully, but these errors were encountered: