need that one too

pull/2197/head
Comma Device 5 years ago
parent 722f9d6b75
commit e4d2174a4e
  1. 1
      selfdrive/common/params.cc

@ -92,6 +92,7 @@ static int mkdir_p(std::string path) {
if (mkdir(_path, 0777) != 0) {
if (errno != EEXIST) return -1;
}
chmod(_path, 0777);
umask(prev_mask);
return 0;
}

Loading…
Cancel
Save