paper-cutter/hooks/pre_gen_project.sh

7 lines
172 B
Bash
Raw Normal View History

#!/bin/bash -xe
if [[ -e .git && ! -z "$(git status --untracked-files=no --porcelain)" ]]; then
>&2 echo "Uncommited changes, commit your changes first"
exit 1
fi