mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-09-13 09:17:20 -07:00
33 lines
807 B
Bash
Executable File
33 lines
807 B
Bash
Executable File
#!/bin/bash
|
|
# Installation: ln -s ../../precommit-hook.sh .git/hooks/pre-commit
|
|
|
|
warning()
|
|
{
|
|
echo ""
|
|
echo "*** $1 ***"
|
|
echo ""
|
|
}
|
|
|
|
if git status --porcelain "staging" | grep -q "^.[^ ]"; then
|
|
warning "PLEASE ADD OR STASH YOUR CHANGES IN staging"
|
|
exit 1
|
|
fi
|
|
|
|
if git status --porcelain "patches" | grep -v "^.\\?.*\\.py$" | grep -q "^.[^ ]"; then
|
|
warning "PLEASE ADD OR STASH YOUR CHANGES IN patches"
|
|
exit 1
|
|
fi
|
|
|
|
if ! git status --porcelain "staging/VERSION" | grep -q "^M."; then
|
|
perl -i -pe 's/(\d+)$/($1 + 1)." (unreleased)"/e' "staging/VERSION"
|
|
git add "staging/VERSION"
|
|
fi
|
|
|
|
git diff --cached --name-status | while read status file; do
|
|
if [[ "$file" =~ ^patches/ ]] || [[ "$file" =~ ^staging/ ]]; then
|
|
warning "UPDATING AUTOGENERATED FILES"
|
|
./staging/patchupdate.py || exit 1
|
|
break;
|
|
fi
|
|
done
|