1
0
mirror of https://github.com/git/git.git synced 2024-09-21 22:32:56 +02:00

git-init-db: create "pack" subdirectory under objects

Don't make the user have to mkdir it just because he's excited about the
new object pack functionality, do it for him.
This commit is contained in:
Linus Torvalds 2005-06-27 18:26:11 -07:00
parent 85c1f337be
commit f49fb35d0d

View File

@ -87,5 +87,7 @@ int main(int argc, char **argv)
sprintf(path+len, "/%02x", i);
safe_create_dir(path);
}
strcpy(path+len, "/pack");
safe_create_dir(path);
return 0;
}