[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#66605] [PATCH v2] etc: gitconfig: Run etc/teams.scm from correct en
From: |
Maxim Cournoyer |
Subject: |
[bug#66605] [PATCH v2] etc: gitconfig: Run etc/teams.scm from correct environment. |
Date: |
Wed, 18 Oct 2023 21:47:04 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Hello,
Clément Lassieur <clement@lassieur.org> writes:
> * etc/git/gitconfig: Prepend "guix repl" to the etc/teams.scm script so that
> any user that has git:send-email installed can use it in the Guix checkout
> without changing their environment. (teams.scm uses (git) and (guix ui).)
> ---
> etc/git/gitconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/etc/git/gitconfig b/etc/git/gitconfig
> index 907ad0180454..abcd494d62e8 100644
> --- a/etc/git/gitconfig
> +++ b/etc/git/gitconfig
> @@ -14,5 +14,5 @@
>
> [sendemail]
> to = guix-patches@gnu.org
> - headerCmd = etc/teams.scm cc-members-header-cmd
> + headerCmd = guix repl etc/teams.scm cc-members-header-cmd
Even nicer could be using 'guix repl' in the teams.scm script shebang.
This way even for those using it outside of 'git send-email', it'd
always work.
--
Thanks,
Maxim