From 1afbf48b250f667ce45de40a6c275e3e42ade67c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sun, 16 Feb 2025 00:20:13 +0100 Subject: [PATCH] =?UTF-8?q?maint:=20Actually=20run=20=E2=80=98make=20check?= =?UTF-8?q?-channel-news=E2=80=99=20in=20pre-push=20hook.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 752310d8540..d0e2cff9d3b 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 ;; *)