I couldn't help myself. 😁
This commit is contained in:
DarN
2021-05-08 17:13:26 +02:00
committed by GitHub
parent e4a61c3572
commit e249c1590a
+1 -1
View File
@@ -79,7 +79,7 @@ static void initCacheDir(FFstate* state)
else if(state->cacheDir.chars[state->cacheDir.length - 1] != '/')
ffStrbufAppendC(&state->cacheDir, '/');
mkdir(state->cacheDir.chars, S_IRWXU | S_IXGRP | S_IRGRP | S_IXOTH | S_IROTH); //I hope everybody has a cache folder but whow knews
mkdir(state->cacheDir.chars, S_IRWXU | S_IXGRP | S_IRGRP | S_IXOTH | S_IROTH); //I hope everybody has a cache folder, but who knows
ffStrbufAppendS(&state->cacheDir, "fastfetch/");
mkdir(state->cacheDir.chars, S_IRWXU | S_IRGRP | S_IROTH);