diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-04-29 12:57:33 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2018-04-29 12:57:37 +0200 |
commit | 8d3a83a20a57cd505b2f98a542903a3aee0c2b45 (patch) | |
tree | f22a67990a9b9f6f0729c4466124a8c10b2d4228 /backend/ninja | |
parent | 34563dda0ccfc34ce62f0bfcfc20f2b0fa48833e (diff) |
Change sibs cache directory to standard one, remove library archive when it has been extracted
Diffstat (limited to 'backend/ninja')
-rw-r--r-- | backend/ninja/Ninja.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/ninja/Ninja.cpp b/backend/ninja/Ninja.cpp index 6b013c4..28e4ea1 100644 --- a/backend/ninja/Ninja.cpp +++ b/backend/ninja/Ninja.cpp @@ -289,7 +289,7 @@ namespace backend if (!globalLibDirResult) return Result<bool>::Err(globalLibDirResult); FileString globalLibDir = globalLibDirResult.unwrap(); - globalLibDir += TINYDIR_STRING("/.sibs/lib"); + globalLibDir += TINYDIR_STRING("/.cache/sibs/lib"); Result<bool> createGlobalLibDirResult = createDirectoryRecursive(globalLibDir.c_str()); if(createGlobalLibDirResult.isErr()) return createGlobalLibDirResult; |