Changes
Breaking change
-
fix(foreach): Remove shell invocation from foreach @annettejanewilson (#136)
Turbolift's
foreach
command no longer invokes a shell to interpret your command. This fixes some issues around passing an empty string as an argument and difficulty escaping shell characters. However, it also means that you can no longer directly pass turbolift a quoted script containing redirects or pipes. Instead, you will need to explicitly invoke a shell yourself. For example, if you previously usedturbolift foreach 'script | with > redirects'
you would now useturbolift foreach -- bash -c 'script | with > redirects'
. We hope that the improved consistency and predictability makes up for needing to be a bit more explicit in this advanced usage.
Other changes
- feat(pr-status): add build status to pr-status list table @jorgedc93 (#129)