char *sha1_dir = getenv(DB_ENVIRONMENT), *path;
int len, i;
- if (mkdir(".dircache", 0700) < 0) {
- perror("unable to create .dircache");
+ if (mkdir(".git", 0755) < 0) {
+ perror("unable to create .git directory");
exit(1);
}
}
/*
- * The default case is to have a DB per managed directory.
+ * The default case is to have a DB per managed directory.
*/
sha1_dir = DEFAULT_DB_ENVIRONMENT;
fprintf(stderr, "defaulting to private storage area\n");
len = strlen(sha1_dir);
- if (mkdir(sha1_dir, 0700) < 0) {
+ if (mkdir(sha1_dir, 0755) < 0) {
if (errno != EEXIST) {
perror(sha1_dir);
exit(1);
memcpy(path, sha1_dir, len);
for (i = 0; i < 256; i++) {
sprintf(path+len, "/%02x", i);
- if (mkdir(path, 0700) < 0) {
+ if (mkdir(path, 0755) < 0) {
if (errno != EEXIST) {
perror(path);
exit(1);