diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-03-18 13:51:07 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-03-18 13:51:07 -0700 |
commit | 1c18a14b637aac5bc0a64441c5884ef8755ba7bf (patch) | |
tree | a6429e4e7f5c9e2d6ca45acc69434c790d53b913 /t | |
parent | 006f678780e816a2540628e5473b0eea199d0b61 (diff) | |
parent | 6eca18ca734043a8d3e540e89575362cfe983d6f (diff) | |
download | git-1c18a14b637aac5bc0a64441c5884ef8755ba7bf.tar.gz |
Merge branch 'jc/no-need-for-env-in-sh-scripts'
* jc/no-need-for-env-in-sh-scripts:
*.sh: drop useless use of "env"
Diffstat (limited to 't')
-rwxr-xr-x | t/t1020-subdirectory.sh | 2 | ||||
-rwxr-xr-x | t/t9001-send-email.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/t/t1020-subdirectory.sh b/t/t1020-subdirectory.sh index 1e2945ec7e..6902320e81 100755 --- a/t/t1020-subdirectory.sh +++ b/t/t1020-subdirectory.sh @@ -148,7 +148,7 @@ test_expect_success 'GIT_PREFIX for built-ins' ' ( cd dir && printf "change" >two && - env GIT_EXTERNAL_DIFF=./diff git diff >../actual + GIT_EXTERNAL_DIFF=./diff git diff >../actual git checkout -- two ) && test_cmp expect actual 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 |