diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-03-07 00:22:34 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-03-07 00:22:34 +0100 |
commit | 6eca18ca734043a8d3e540e89575362cfe983d6f (patch) | |
tree | 7de7cd9e338933f26d04f59df5c7c58aca800d33 /t/t9001-send-email.sh | |
parent | Git 1.8.5.5 (diff) | |
download | git-6eca18ca734043a8d3e540e89575362cfe983d6f.tar.xz git-6eca18ca734043a8d3e540e89575362cfe983d6f.zip |
*.sh: drop useless use of "env"
In a bourne shell script, "VAR=VAL command" is sufficient to run
'command' with environment variable VAR set to value VAL without
affecting the environment of the shell itself; there is no need
to say "env VAR=VAL command".
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9001-send-email.sh')
-rwxr-xr-x | t/t9001-send-email.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh index 3119c8c523..1ecdacb6fd 100755 --- a/t/t9001-send-email.sh +++ b/t/t9001-send-email.sh @@ -409,7 +409,7 @@ test_expect_success $PREREQ 'Valid In-Reply-To when prompting' ' (echo "From Example <from@example.com>" echo "To Example <to@example.com>" echo "" - ) | env GIT_SEND_EMAIL_NOTTY=1 git send-email \ + ) | GIT_SEND_EMAIL_NOTTY=1 git send-email \ --smtp-server="$(pwd)/fake.sendmail" \ $patches 2>errors && ! grep "^In-Reply-To: < *>" msgtxt1 |