zconfig/githooks/post-merge
2020-04-29 12:54:10 +02:00

11 lines
174 B
Bash
Executable file

#!/usr/bin/env zsh
if [ "$(basename $(realpath $PWD))" = ".git" ]; then
cd ..
fi
for updater in ./update_*.sh; do
${updater}
done
# vim: set ft=sh et sw=0 ts=2 sts=0: