https://pulumi.com logo
Title
q

quick-wolf-8403

10/19/2022, 5:41 PM
Hey folks. In a shell script developers use, I loop over the the
pulumi
command. Is there a way to disable warnings? I don't want
warning: A new version of Pulumi is available...
printed over and over. I could just redirected stderr to null, but I'd rather show other errors. (Tried
--verbose 0
and
--non-interactive
already.)
s

salmon-account-74572

10/19/2022, 5:52 PM
You can use
PULUMI_SKIP_UPDATE_CHECK=1
to block that update check and associated message.
Set that as an environment variable (or prepend it to the command) and that should help.
q

quick-wolf-8403

10/19/2022, 6:24 PM
Thanks! perfect!