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
Родитель 85c1f337be
Коммит f49fb35d0d
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -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;
}