install.fairie/dotfiles/.local/share/chezmoi/home/.chezmoiscripts/darwin/run_onchange_before_10_install-darwin-packages.tmpl

23 lines
625 B
Cheetah

{{- if eq .host.distro.id "darwin" }}
#!/usr/bin/env bash
{{- includeTemplate "universal/logg" }}
logg 'Ensuring `xcode-select` is installed'
xcode-select -p >/dev/null 2>&1 || xcode-select --install
if ! command -v brew >/dev/null 2>&1; then
logg 'Installing Homebrew'
/bin/sh -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
{{ if eq .host.arch "arm64" -}}
eval $(/opt/homebrew/bin/brew shellenv)
{{- else }}
eval $(/usr/local/bin/brew shellenv)
{{- end }}
# brew bundle --verbose --no-lock --file=/dev/stdin <<EOF
# includeTemplate "darwin/brewfile" . }}
# EOF
{{- end -}}