From: Junio C Hamano Date: Sat, 20 Aug 2005 09:05:31 +0000 (-0700) Subject: Create objects/info/ directory in init-db. X-Git-Tag: v0.99.5~7^2~2 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=d57306c7945becfba70d3139af0a3a8f525a6bb5;p=git.git Create objects/info/ directory in init-db. Signed-off-by: Junio C Hamano --- diff --git a/init-db.c b/init-db.c index 1fb3f7fa..50b16b34 100644 --- a/init-db.c +++ b/init-db.c @@ -249,5 +249,7 @@ int main(int argc, char **argv) } strcpy(path+len, "/pack"); safe_create_dir(path); + strcpy(path+len, "/info"); + safe_create_dir(path); return 0; } diff --git a/t/t0000-basic.sh b/t/t0000-basic.sh index 547488bd..142b7bf3 100755 --- a/t/t0000-basic.sh +++ b/t/t0000-basic.sh @@ -28,11 +28,12 @@ test_expect_success \ '.git/objects should be empty after git-init-db in an empty repo.' \ 'cmp -s /dev/null should-be-empty' -# also it should have 257 subdirectories. 258 is counting "objects" +# also it should have 258 subdirectories; 256 fan-out, pack, and info. +# 259 is counting "objects" itself find .git/objects -type d -print >full-of-directories test_expect_success \ - '.git/objects should have 257 subdirectories.' \ - 'test $(wc -l < full-of-directories) = 258' + '.git/objects should have 258 subdirectories.' \ + 'test $(wc -l < full-of-directories) = 259' ################################################################ # Basics of the basics