From 0a81a57d48b0c141096676cbd6326ad2cf3f23d4 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sun, 24 Mar 2024 04:34:43 -0400 Subject: [PATCH] fixed post-commit echos --- scripts/hooks/post-commit | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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