28 lines
1.1 KiB
Bash
28 lines
1.1 KiB
Bash
export HOMEBREW_API_DOMAIN="https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles/api"
|
|
export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles"
|
|
export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git"
|
|
export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git"
|
|
export HOMEBREW_INSTALL_FROM_API=1
|
|
export HOMEBREW_PIP_INDEX_URL=https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
|
|
|
|
if [[ $(uname) == "Darwin" ]]; then
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
fi
|
|
install_brew() {
|
|
git clone --depth=1 https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/install.git brew-install
|
|
/bin/bash brew-install/install.sh
|
|
rm -rf brew-install
|
|
for tap in core cask command-not-found; do
|
|
brew tap --custom-remote --force-auto-update "homebrew/${tap}" "https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-${tap}.git"
|
|
done
|
|
brew update
|
|
}
|
|
|
|
b() {
|
|
brew $@
|
|
if [[ $ = "install" || $1 == "remove" || $1 == "uninstall" ]]; then
|
|
echo "Updating Brewfile..."
|
|
brew bundle dump --force --file=~/.config/Brewfile
|
|
fi
|
|
}
|