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

pull/21496/head
Dean Lee 4 years ago committed by GitHub
parent ec00e71b64
commit 4145988756
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      selfdrive/ui/qt/setup/installer.cc

@ -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();
}

Loading…
Cancel
Save