Commit 035f3382 authored by Alain Takoudjou's avatar Alain Takoudjou

headless-chromium: fix access permission for some installed files

Installed files are owned by slapsoft but some folders has rx permission
for group which cause permission denied when slapuserXX try to access
them.
parent 6db6993a
Pipeline #23537 failed with stage
in 0 seconds
......@@ -111,6 +111,11 @@ environment =
AR="${:llvm-toolchain}/llvm-ar"
NM="${:llvm-toolchain}/llvm-nm"
# Fix permission for group, slapuserXX should be able to access subfolders
# in headless-chromium location.
post-install =
find ${:fake-location} -type d -exec chmod g+xr {} \;
# Expose devtools frontend location.
devtools-frontend = ${:fake-location}/gen/third_party/devtools-frontend/src/front_end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment