mirror of
https://github.com/Xevion/dotfiles.git
synced 2025-12-09 08:07:12 -06:00
8 lines
272 B
Bash
Executable File
8 lines
272 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# chezmoi update --init does not invoke the 'hooks.init.pre' hook, so we do it ourselves
|
|
if grep -q 'init' <<<$CHEZMOI_ARGS; then
|
|
# CHEZMOI_UPDATE is just a hint in case we need to know if we're updating
|
|
CHEZMOI_UPDATE=1 $(dirname $0)/.init_pre.sh
|
|
fi
|