This is an automated email from the git hooks/post-receive script.

civodul pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 1afbf48b25 maint: Actually run ‘make check-channel-news’ in pre-push 
hook.
1afbf48b25 is described below

commit 1afbf48b250f667ce45de40a6c275e3e42ade67c
Author: Ludovic Courtès <[email protected]>
AuthorDate: Sun Feb 16 00:20:13 2025 +0100

    maint: Actually run ‘make check-channel-news’ in pre-push hook.
    
    Fixes a bug introduced in ab9cda9ebd00073d5a0783919809f2e564f141e9 where
    ‘make check-channel-news’ would not longer be executed.
    
    * etc/git/pre-push: Remove ‘exec’ before ‘guix git authenticate’.
    
    Change-Id: Ic425db866e44695493be96a0a8c81c77c815e42d
---
 etc/git/pre-push | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/etc/git/pre-push b/etc/git/pre-push
index 752310d854..d0e2cff9d3 100755
--- a/etc/git/pre-push
+++ b/etc/git/pre-push
@@ -33,8 +33,8 @@ do
                case "$2" in
                    *.gnu.org*)
                        set -e
-                       exec guix git authenticate
-                       make check-channel-news
+                       guix git authenticate
+                       exec make check-channel-news
                        exit 127
                        ;;
                    *)

Reply via email to