The following installation command will get you stuck in a subshell when using ZSH:
brew install gnupg
(curl -Ls --tlsv1.2 --proto "=https" --retry 3 https://cli.doppler.com/install.sh || wget -t 3 -qO- https://cli.doppler.com/install.sh) | sudo sh -s -- --verify-signature
It simply outputs:
subsh>
And nothing happens from there.
I tried switching to bash, but it seems like I would need to reinstall/configure brew separately for bash, but the signature verification did attempt to run, so I’m assuming ZSH to be the cause.
From ZSH I was able to to use the alternative option for installing directly with homebrew. Works, but I’m not sure about the implication of slower updates. Is that because Homebrew needs an updated formula every time you push an update?
Given that I want to add Doppler CLI to a provisioning script and would like to ensure that I’m using the latest version when running that script, could I simply run this?
brew install dopplerhq/cli/doppler
doppler update
I’m assuming the doppler update command works independently of Homebrew?