diff options
author | Junio C Hamano <junkio@cox.net> | 2006-03-06 07:10:26 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-06 07:10:26 +0100 |
commit | 8ad02bc9649b0a69a0c09a23bd177a070b57af7d (patch) | |
tree | 8ad3c13fd351025bc0916bea70ea2862fe91c21d /t/t8002-blame.sh | |
parent | annotate/blame tests updates. (diff) | |
download | git-8ad02bc9649b0a69a0c09a23bd177a070b57af7d.tar.xz git-8ad02bc9649b0a69a0c09a23bd177a070b57af7d.zip |
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/t8002-blame.sh')
-rwxr-xr-x | t/t8002-blame.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t8002-blame.sh b/t/t8002-blame.sh index 1036c54d30..9777393996 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 |