14 lines
215 B
Text
14 lines
215 B
Text
|
#! /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
|
||
|
|