From: Richard Purdie <[email protected]> We want the results directory to be visable to other users, tweak the permissions of the created directory to ensure this is the case.
Signed-off-by: Richard Purdie <[email protected]> (cherry picked from commit ed9d887e8d71a800db19826264de552f7736dc6a) Signed-off-by: Steve Sakoman <[email protected]> --- scripts/lib/resulttool/store.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/lib/resulttool/store.py b/scripts/lib/resulttool/store.py index 578910d234..b143334e69 100644 --- a/scripts/lib/resulttool/store.py +++ b/scripts/lib/resulttool/store.py @@ -87,6 +87,7 @@ def store(args, logger): if args.logfile_archive: logdir = args.logfile_archive + "/" + tagname shutil.copytree(tempdir, logdir) + os.chmod(logdir, 0o755) for root, dirs, files in os.walk(logdir): for name in files: if not name.endswith(".log"): -- 2.43.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#211007): https://lists.openembedded.org/g/openembedded-core/message/211007 Mute This Topic: https://lists.openembedded.org/mt/111061324/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
