aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-10-01 15:01:39 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-06 07:39:33 +0200
commit88effd4a0d63e37a2851712f63a9709a1e322946 (patch)
tree8a6334a870f56afb5bf76c32d0bd202de694995c /src
parent69c7ec31219d666bba4f053fcce07d4df58b8ba2 (diff)
Fix sibs not finding test code in subdirs of test dir
Fix platform specific configs, not all configs were checked
Diffstat (limited to 'src')
-rw-r--r--src/Conf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Conf.cpp b/src/Conf.cpp
index c93f830..090e1e1 100644
--- a/src/Conf.cpp
+++ b/src/Conf.cpp
@@ -461,7 +461,7 @@ namespace sibs
// Do not free file content (fileContentResult) on purpose, since we are using the data and sibs is short lived
Result<bool> parseResult = Parser::parse(code, config);
if(!parseResult)
- return Result<bool>::Err("Failed to read config for: " + parseResult.getErrMsg());
+ return Result<bool>::Err("Failed to read config, reason: " + parseResult.getErrMsg());
if(!config.isTest())
{