annotate-blame test: don't "source", but say "."
authorJunio C Hamano <junkio@cox.net>
Mon, 6 Mar 2006 06:10:26 +0000 (22:10 -0800)
committerJunio C Hamano <junkio@cox.net>
Mon, 6 Mar 2006 06:10:26 +0000 (22:10 -0800)
Just I am old fashioned. Source inclusion in bourne shell is
"." (dot), not "source" -- that's csh.

[jc: yes I know bash groks it, but I am old fashioned.]

Signed-off-by: Junio C Hamano <junkio@cox.net>
t/t8001-annotate.sh
t/t8002-blame.sh
index 9e5a04b0f93fca15628acc93d4c2dcb896cba0d6..2496397da3c335997779bae43ba37ec6d32810de 100755 (executable)
@@ -4,6 +4,6 @@ test_description='git-annotate'
 . ./test-lib.sh
 
 PROG='git annotate'
-source ../annotate-tests.sh
+. ../annotate-tests.sh
 
 test_done
index 1036c54d303f31171afb49fadf6f46076635d31d..97773939962187b4a27176e9bcb5104652ba3853 100755 (executable)
@@ -4,6 +4,6 @@ test_description='git-blame'
 . ./test-lib.sh
 
 PROG='git blame -c'
-source ../annotate-tests.sh
+. ../annotate-tests.sh
 
 test_done