Skip to content

Commit

Permalink
fix(install): out unused brew taps section
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed Jul 17, 2024
1 parent b64a0ea commit 4dec85c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions chezmoi/dot_local/bin/executable_dotfiles-install-brew-pkgs.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ for package in "${DOTFILES_PKGS_BREW[@]}"; do
done
log_info "Wanted packages: ${wanted_packages[*]}"

readonly wanted_tabs=(
homebrew/cask-fonts
)
# readonly wanted_tabs=(
# homebrew/cask-fonts
# )

# get tab list into BREW_TABS variable
BREW_TABS=$(brew tap)
# # get tab list into BREW_TABS variable
# BREW_TABS=$(brew tap)

# install tabs that are not installed
for tab in "${wanted_tabs[@]}"; do
if ! echo "${BREW_TABS}" | grep -q "^${tab}$"; then
log_task "Installing brew tab: ${tab}"
c brew tap "${tab}"
fi
done
# # install tabs that are not installed
# for tab in "${wanted_tabs[@]}"; do
# if ! echo "${BREW_TABS}" | grep -q "^${tab}$"; then
# log_task "Installing brew tab: ${tab}"
# c brew tap "${tab}"
# fi
# done

# install packages that are not installed
missing_packages=()
Expand Down

0 comments on commit 4dec85c

Please sign in to comment.