tree-sitter-plpgsql/scripts/pre-commit

16 lines
302 B
Bash
Executable File

#! /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 -e "^grammar.js$") ]
then
make build
# TODO: Enable when performance improves
# make build-wasm
git add src bindings *.wasm
fi