diff options
| author | Eric Sunshine <sunshine@sunshineco.com> | 2018-07-01 20:24:04 -0400 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2018-07-16 14:38:47 -0700 |
| commit | cff4243db9eec386c17222d545ec7dbf51768672 (patch) | |
| tree | a078a9c392c1815e2ebda25fb04deb4add555258 /t/t9147-git-svn-include-paths.sh | |
| parent | e974e06de01aede87161fb04cfeb119343bb7594 (diff) | |
| download | git-cff4243db9eec386c17222d545ec7dbf51768672.tar.gz | |
t9000-t9999: fix broken &&-chains
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9147-git-svn-include-paths.sh')
| -rwxr-xr-x | t/t9147-git-svn-include-paths.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t9147-git-svn-include-paths.sh b/t/t9147-git-svn-include-paths.sh index a90ff58629..d292bf9f55 100755 --- a/t/t9147-git-svn-include-paths.sh +++ b/t/t9147-git-svn-include-paths.sh @@ -84,7 +84,7 @@ test_expect_success 'update git svn-cloned repo (option include)' ' test_expect_success 'SVN-side change inside of ignored www' ' ( cd s && - echo zaq >> www/test_www.txt + echo zaq >> www/test_www.txt && svn_cmd commit -m "SVN-side change inside of www/test_www.txt" && svn_cmd up && svn_cmd log -v | fgrep "SVN-side change inside of www/test_www.txt" @@ -116,8 +116,8 @@ test_expect_success 'update git svn-cloned repo (option include)' ' test_expect_success 'SVN-side change in and out of included qqq' ' ( cd s && - echo cvf >> www/test_www.txt - echo ygg >> qqq/test_qqq.txt + echo cvf >> www/test_www.txt && + echo ygg >> qqq/test_qqq.txt && svn_cmd commit -m "SVN-side change in and out of ignored www" && svn_cmd up && svn_cmd log -v | fgrep "SVN-side change in and out of ignored www" |
