diff options
Diffstat (limited to 'cache.c')
-rw-r--r-- | cache.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -45,6 +45,10 @@ int cache_create_dirs() | |||
45 | { | 45 | { |
46 | char *path; | 46 | char *path; |
47 | 47 | ||
48 | path = fmt("%s", cgit_cache_root); | ||
49 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) | ||
50 | return 0; | ||
51 | |||
48 | if (!cgit_query_repo) | 52 | if (!cgit_query_repo) |
49 | return 0; | 53 | return 0; |
50 | 54 | ||