Add help for zsh shell for homebrew bottles, closing https://github.com/tuna/issues/issues/932

This commit is contained in:
Jiajie Chen 2020-08-21 19:55:39 +08:00
parent b19f057f0a
commit a9e9f19ca8

View File

@ -14,7 +14,17 @@ export HOMEBREW_BOTTLE_DOMAIN=https://{{ site.hostname }}/homebrew-bottles
```
### 长期替换
如果你使用 bash:
```bash
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://{{ site.hostname }}/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile
```
如果你使用 zsh:
```zsh
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://{{ site.hostname }}/homebrew-bottles' >> ~/.zprofile
source ~/.zprofile
```