tree-sitter-d2/scripts/pre-commit

15 lines
257 B
Plaintext
Raw Normal View History

#! /usr/bin/env bash
2022-12-10 23:00:30 +03:00
# 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 -e "^grammar.js$") ]
then
make build
make build-wasm
2022-12-10 23:09:11 +03:00
git add src bindings *.wasm
fi