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

old-commit-hash: 41459887560bd25eb600804e2b8e125f977d965b
This commit is contained in:
Dean Lee
2021-07-07 01:14:07 +08:00
committed by GitHub
parent 93461be530
commit 1f9a5d6bc3
+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();
}