Would be great if we can use a command line flag t...
# general
c
Would be great if we can use a command line flag to tell pulumi to skip update check: Currently when configuring auto completion via .bashrc (
source <(pulumi gen-completion bash)
it will be very slow due to the update check. And you get this update message every time you open a new terminal.
e
Just set PULUMI_SKIP_UPDATE_CHECK=1 while making that call
c
Then you have to set it and unset it which is not very convenient
e
You can set envvars for a single command in bash by making it part of the command:
Copy code
PULUMI_SKIP_UPDATE_CHECK=1 source <(pulumi gen-completion bash)
c
ah thanks! Let me try