]> granicus.if.org Git - git/commitdiff
t9001: write $HOME/, not ~/, to help shells without tilde expansion
authorJunio C Hamano <gitster@pobox.com>
Sat, 23 May 2015 18:07:50 +0000 (11:07 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 27 May 2015 20:03:44 +0000 (13:03 -0700)
Even though it is in POSIX, we do not have to use it, only to hurt
shells that may lack the support.

The .mailrc test tries to define an alias in .mailrc in the home
directory by shell redirection, and then tries to see ~/.mailrc in
config is tilde-expanded by Git without help from shell.  So the
creation should become $HOME/ to be portable for shells that may
lack tilde expansion but the reference should be done as "~/.mailrc".

Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t9001-send-email.sh

index 01c7ef4d9b67bc7e0b8eaa538711d688db149199..a3663da49ba075c14d6aa66c3cd3d9eb0c7d2f62 100755 (executable)
@@ -1537,7 +1537,7 @@ test_expect_success $PREREQ 'sendemail.aliasfiletype=mailrc' '
 
 test_expect_success $PREREQ 'sendemail.aliasfile=~/.mailrc' '
        clean_fake_sendmail &&
-       echo "alias sbd  someone@example.org" >~/.mailrc &&
+       echo "alias sbd  someone@example.org" >"$HOME/.mailrc" &&
        git config --replace-all sendemail.aliasesfile "~/.mailrc" &&
        git config sendemail.aliasfiletype mailrc &&
        git send-email \