From b43b1ac567729e9489348f0e332192d9c9d3b16e Mon Sep 17 00:00:00 2001 From: Comma Device Date: Sat, 17 Oct 2020 17:44:10 -0700 Subject: [PATCH] need that one too old-commit-hash: e4d2174a4efaf324f2e32c11a569bc7f069a4a30 --- selfdrive/common/params.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/selfdrive/common/params.cc b/selfdrive/common/params.cc index a44933402e..e6f9d580c8 100644 --- a/selfdrive/common/params.cc +++ b/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; }