Hi. Today, when I run `pulumi up`, I got notificat...
# general
f
Hi. Today, when I run
pulumi up
, I got notification for update:
Copy code
warning: A new version of Pulumi is available. To upgrade from version '1.1.0' to '1.2.0', run
   $ brew upgrade pulumi
or visit <https://pulumi.com/docs/reference/install/> for manual instructions and release notes.
but in actual, when I run
brew upgrade pulumi
,
Copy code
$ brew upgrade pulumi
Error: pulumi 1.1.0 already installed
This is a bit annoying. Is this lag comes from brew? Is it possible not to show this update message?
g
Yes, I believe this lag is due to homebrew. You can set the environment variable
PULUMI_SKIP_UPDATE_CHECK=true
to skip this check and message.
f
OK, thank you!