diff options
author | Eric Sunshine <sunshine@sunshineco.com> | 2018-07-02 02:24:02 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-07-16 23:38:47 +0200 |
commit | c8ce3763ffbc1841f2b4fedebd82280ed0c3a7b7 (patch) | |
tree | e521ef6a568f3e33f4c804e47fd38f3449065d00 /t/t6010-merge-base.sh | |
parent | t5000-t5999: fix broken &&-chains (diff) | |
download | git-c8ce3763ffbc1841f2b4fedebd82280ed0c3a7b7.tar.xz git-c8ce3763ffbc1841f2b4fedebd82280ed0c3a7b7.zip |
t6000-t6999: fix broken &&-chains
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t6010-merge-base.sh')
-rwxr-xr-x | t/t6010-merge-base.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t6010-merge-base.sh b/t/t6010-merge-base.sh index aa2d360ce3..44c726ea39 100755 --- a/t/t6010-merge-base.sh +++ b/t/t6010-merge-base.sh @@ -245,7 +245,7 @@ test_expect_success 'using reflog to find the fork point' ' git commit --allow-empty -m "Derived #$count" && git rev-parse HEAD >derived$count && git checkout -B base $E || exit 1 - done + done && for count in 1 2 3 do |