installer.cc: fix wrong db path (#21494)

This commit is contained in:
Dean Lee
2021-07-07 01:14:07 +08:00
committed by GitHub
parent ec00e71b64
commit 4145988756
+1 -1
View File
@@ -50,7 +50,7 @@ int fresh_clone() {
};
for (const auto& [key, value] : params) {
std::ofstream param;
param.open("/data/params/d/RecordFrontLock" + key);
param.open("/data/params/d/" + key);
param << value;
param.close();
}