diff --git a/scripts/hooks/post-commit b/scripts/hooks/post-commit index 7d247ab..87f8998 100755 --- a/scripts/hooks/post-commit +++ b/scripts/hooks/post-commit @@ -1,11 +1,11 @@ #!/bin/sh -echo "pre-commit: Refreshing packwiz" +echo "post-commit: Refreshing packwiz" cd src packwiz refresh -echo "pre-commit: Adding changes to git" +echo "post-commit: Adding changes to git" git add . -echo "pre-commit: Amending commit with refreshed files" +echo "post-commit: Amending commit with refreshed files" git commit --amend --gpg-sign --no-edit --no-verify -echo "pre-commit: Done" +echo "post-commit: Done" exit 0