annotate .chezmoiscripts/run_onchange_after_10-install-brew-packages.sh.tmpl @ 673:e258ef0fb4cd

Add prettier config (#1) * Update .pre-commit-config.yaml * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
author Zeger Van de Vannet <747627+zegervdv@users.noreply.github.com>
date Thu, 29 Sep 2022 23:03:11 +0200
parents fdce323431f4
children 83b479436409
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
663
fdce323431f4 Add asdf and config for python, neovim and direnv
zegervdv <zegervdv@me.com>
parents:
diff changeset
1 {{ if (or (eq .chezmoi.os "linux") (eq .chezmoi.os "darwin")) -}}
fdce323431f4 Add asdf and config for python, neovim and direnv
zegervdv <zegervdv@me.com>
parents:
diff changeset
2 #!/usr/bin/env bash
fdce323431f4 Add asdf and config for python, neovim and direnv
zegervdv <zegervdv@me.com>
parents:
diff changeset
3
fdce323431f4 Add asdf and config for python, neovim and direnv
zegervdv <zegervdv@me.com>
parents:
diff changeset
4 # Brewfile hash: {{ include "dot_Brewfile" | sha256sum }}
fdce323431f4 Add asdf and config for python, neovim and direnv
zegervdv <zegervdv@me.com>
parents:
diff changeset
5
fdce323431f4 Add asdf and config for python, neovim and direnv
zegervdv <zegervdv@me.com>
parents:
diff changeset
6 brew bundle --global
fdce323431f4 Add asdf and config for python, neovim and direnv
zegervdv <zegervdv@me.com>
parents:
diff changeset
7
fdce323431f4 Add asdf and config for python, neovim and direnv
zegervdv <zegervdv@me.com>
parents:
diff changeset
8 {{ end -}}