Update pre-push hook again agin

This commit is contained in:
Firepup Sixfifty 2025-03-27 21:02:17 -05:00
parent 7dde0b6aae
commit d6ecd20cbf
Signed by: Firepup650
SSH key fingerprint: SHA256:in03N+Byhi/nMAIIKKMxbNMskVXULLrovhGkPNFEsdg

View file

@ -1,8 +1,8 @@
if [ -z "$(git status --porcelain -M)" ];then
if [ -z "$(git status --porcelain)" ];then
echo No uncommited changes detected
else
echo The following files have uncommited changes:
git status --porcelain -M
git status --porcelain
echo Refusing to push
exit 1
fi