Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
t3600: remove useless redirect
author
Stefan Beller
<sbeller@google.com>
Fri, 2 Dec 2016 20:05:15 +0000
(12:05 -0800)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 5 Dec 2016 20:19:30 +0000
(12:19 -0800)
In the next line the `actual` is overwritten again, so no need to redirect
the output of checkout into that file.
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t3600-rm.sh
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
bbad9f9
)
diff --git
a/t/t3600-rm.sh
b/t/t3600-rm.sh
index 3d305814b9d755a827d27ed9036ebb2f8d48abe6..95cf63fe60712174f4686789da7374b45eb82671 100755
(executable)
--- a/
t/t3600-rm.sh
+++ b/
t/t3600-rm.sh
@@
-709,7
+709,7
@@
test_expect_success 'checking out a commit after submodule removal needs manual
git commit -m "submodule removal" submod &&
git checkout HEAD^ &&
git submodule update &&
- git checkout -q HEAD^
2>actual
&&
+ git checkout -q HEAD^ &&
git checkout -q master 2>actual &&
echo "warning: unable to rmdir submod: Directory not empty" >expected &&
test_i18ncmp expected actual &&