Begin sandboxing support, README updates.

这个提交包含在:
2019-08-11 20:10:38 +02:00
父节点 d7db1fbe39
当前提交 f83c705230
修改 9 个文件,包含 398 行新增27 行删除

2
cache/fscache.cpp vendored
查看文件

@@ -7,7 +7,7 @@ FsCache::FsCache(std::string path)
{
if(!std::filesystem::exists(path))
{
throw std::runtime_error{"Directory does not exist"};
throw std::runtime_error{"Cache directory does not exist"};
}
this->path = path;
}