aboutsummaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-04-29 12:57:33 +0200
committerdec05eba <dec05eba@protonmail.com>2018-04-29 12:57:37 +0200
commit8d3a83a20a57cd505b2f98a542903a3aee0c2b45 (patch)
treef22a67990a9b9f6f0729c4466124a8c10b2d4228 /backend
parent34563dda0ccfc34ce62f0bfcfc20f2b0fa48833e (diff)
Change sibs cache directory to standard one, remove library archive when it has been extracted
Diffstat (limited to 'backend')
-rw-r--r--backend/ninja/Ninja.cpp2
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;