pleshevski.ru/scripts/pre-commit

14 lines
215 B
Text
Raw Normal View History

2024-07-25 16:59:34 +03:00
#! /usr/bin/env bash
# Can be used as a pre-commit hook
# Just symlink this file to .git/hooks/pre-commit
set -xe
if [ ! -z $(git diff --cached --name-only | grep "^docs/") ]
then
make build
git add dist
fi