diff options
author | Junio C Hamano <junkio@cox.net> | 2005-09-08 18:50:33 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-09-08 18:50:33 -0700 |
commit | bc6146d2abcf3800eb3683cfe972cabd38ff4796 (patch) | |
tree | 061f79e214d9071b392d530ca83d0c12b1ba4200 /t/t5400-send-pack.sh | |
parent | 2f0f8b71ee45bcf91c2de480474a26030596fe3c (diff) | |
download | git-bc6146d2abcf3800eb3683cfe972cabd38ff4796.tar.gz git-bc6146d2abcf3800eb3683cfe972cabd38ff4796.tar.xz |
'build' scripts before installing.
Earlier we renamed git-foo.sh to git-foo while installing, which
was mostly done by inertia than anything else. This however
made writing tests to use scripts harder.
This patch builds the scripts the same way as we build binaries
from their sources. As a side effect, you can now specify
non-standard paths you have your Perl binary is in when running
the make.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t5400-send-pack.sh')
-rwxr-xr-x | t/t5400-send-pack.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t5400-send-pack.sh b/t/t5400-send-pack.sh index fb8320d75..59ce77b6b 100755 --- a/t/t5400-send-pack.sh +++ b/t/t5400-send-pack.sh @@ -21,9 +21,9 @@ test_expect_success setup ' parent=$commit || return 1 done && echo "$commit" >.git/HEAD && - git-clone.sh -l ./. victim && + git-clone -l ./. victim && cd victim && - git-log.sh && + git-log && cd .. && echo $zero >.git/HEAD && parent=$zero && @@ -35,7 +35,7 @@ test_expect_success setup ' done && echo "$commit" >.git/HEAD && echo Rebase && - git-log.sh' + git-log' test_expect_success \ 'pushing rewound head should not barf but require --force' ' |