Re: [PATCH] test-read-cache: setup git dir

2017-04-06 Thread Jeff King
On Thu, Apr 06, 2017 at 10:41:41PM +0200, René Scharfe wrote: > b1ef400e (setup_git_env: avoid blind fall-back to ".git") made programs > that tried to access a repository without initializing properly die with > a diagnostic message. One offender is test-read-cache, which is used in > p0002. Fi

[PATCH] test-read-cache: setup git dir

2017-04-06 Thread René Scharfe
b1ef400e (setup_git_env: avoid blind fall-back to ".git") made programs that tried to access a repository without initializing properly die with a diagnostic message. One offender is test-read-cache, which is used in p0002. Fix it by calling setup_git_directory() before accessing the index. Sign