diff options
author | Junio C Hamano <junkio@cox.net> | 2006-03-05 22:10:26 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-05 22:10:26 -0800 |
commit | 8ad02bc9649b0a69a0c09a23bd177a070b57af7d (patch) | |
tree | 8ad3c13fd351025bc0916bea70ea2862fe91c21d /t | |
parent | 92a903acfd0904e6dd6d18112428429938783d19 (diff) | |
download | git-8ad02bc9649b0a69a0c09a23bd177a070b57af7d.tar.gz git-8ad02bc9649b0a69a0c09a23bd177a070b57af7d.tar.xz |
annotate-blame test: don't "source", but say "."
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>
Diffstat (limited to 't')
-rwxr-xr-x | t/t8001-annotate.sh | 2 | ||||
-rwxr-xr-x | t/t8002-blame.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/t/t8001-annotate.sh b/t/t8001-annotate.sh index 9e5a04b0f..2496397da 100755 --- a/t/t8001-annotate.sh +++ b/t/t8001-annotate.sh @@ -4,6 +4,6 @@ test_description='git-annotate' . ./test-lib.sh PROG='git annotate' -source ../annotate-tests.sh +. ../annotate-tests.sh test_done diff --git a/t/t8002-blame.sh b/t/t8002-blame.sh index 1036c54d3..977739399 100755 --- a/t/t8002-blame.sh +++ b/t/t8002-blame.sh @@ -4,6 +4,6 @@ test_description='git-blame' . ./test-lib.sh PROG='git blame -c' -source ../annotate-tests.sh +. ../annotate-tests.sh test_done |