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

old-commit-hash: 4145988756
commatwo_master
Dean Lee 4 years ago committed by GitHub
parent 93461be530
commit 1f9a5d6bc3
  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