Is there a way to prevent Pulumi from printing dot...
# general
e
Is there a way to prevent Pulumi from printing dots to show progress when no TTY is available? It is a very annoying behaviour in a CI/CD pipeline (one can just assume that as long as the process doesn't exit, Pulumi is doing stuff)
l
You might give the parameter
--non-interactive
a try. https://www.pulumi.com/docs/reference/cli/
I know it disables a few options, but I’m not sure whether the dots disappear with it as well.
e
Okay thanks, will try