mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-03 20:42:09 +08:00
installer.cc: fix wrong db path (#21494)
old-commit-hash: 41459887560bd25eb600804e2b8e125f977d965b
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user