diff options
Diffstat (limited to 'checkout-cache.c')
-rw-r--r-- | checkout-cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checkout-cache.c b/checkout-cache.c index cfbc47ee2d..73a1a8d668 100644 --- a/checkout-cache.c +++ b/checkout-cache.c @@ -46,7 +46,7 @@ static void create_directories(const char *path) len = slash - path; memcpy(buf, path, len); buf[len] = 0; - mkdir(buf, 0700); + mkdir(buf, 0755); } } |