Fix t1410 for core.filemode==false

Since c869753e, core.filemode is hardwired to false on Cygwin.
So this test had no chance to succeed, since an early commit
(changing just the filemode) failed, and therefore all subsequent
tests.

Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Johannes Schindelin 2007-01-10 13:22:50 +01:00 committed by Junio C Hamano
parent 9a0eaf83ea
commit 1b510aa442
1 changed files with 2 additions and 0 deletions

View File

@ -71,6 +71,8 @@ test_expect_success setup '
check_fsck &&

chmod +x C &&
( test "`git repo-config --bool core.filemode`" != false ||
echo executable >>C ) &&
git add C &&
test_tick && git commit -m dragon &&
L=`git rev-parse --verify HEAD` &&