Mercurial > hg
changeset 666:0100a43788ca
hgeditor: Remove EMAIL default for HGUSER, comment editor selection
# HG changeset patch
# User Radoslaw "AstralStorm" Szkodzinski <astralstorm@gorzow.mm.pl>
# Node ID a4c688c8273e392b1bf33cfc736e00ec752a415e
# Parent be12687d4bf0ce16c4207bef85c188de66efbf53
hgeditor: Remove EMAIL default for HGUSER, comment editor selection
HGUSER is already set to EMAIL by Python code if needed
author | Radoslaw "AstralStorm" Szkodzinski <astralstorm@gorzow.mm.pl> |
---|---|
date | Sun, 10 Jul 2005 16:00:56 -0800 |
parents | 40fd5722c669 |
children | 31a9aa890016 |
files | hgeditor |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgeditor Sun Jul 10 16:00:49 2005 -0800 +++ b/hgeditor Sun Jul 10 16:00:56 2005 -0800 @@ -9,6 +9,8 @@ exit $1 } +# If you want to pass your favourite editor some other parameters +# only for Mercurial, modify this: case "${EDITOR:=vi}" in emacs) EDITOR="$EDITOR -nw" @@ -44,7 +46,7 @@ { head -n 1 "$T1" echo - grep -v "^HG:" "$T1" | gpg -t -a -u "${HGUSER:-$EMAIL}" --clearsign + grep -v "^HG:" "$T1" | gpg -t -a -u "${HGUSER}" --clearsign } > "$T2" && mv "$T2" "$1" cleanup_exit $? fi