From f070331a4c9993f4eedcc7fcb1c4b4807db69d02 Mon Sep 17 00:00:00 2001 From: Egor Duda Date: Thu, 6 Mar 2025 10:14:44 +0300 Subject: [PATCH] Fix EROFS error when root fs is mounted read-only repo attempts to create /etc/.repo_gitconfig.json file, and fails if root file system is mounted read-only. Removing non-existing file on read-only filesystem results in EROFS instead of ENOENT. Bug: 401018409 Change-Id: I64edc0567fb88649f3fd8cacb65a8780744640d4 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/458821 Reviewed-by: Mike Frysinger Tested-by: Egor Duda Commit-Queue: Egor Duda --- platform_utils.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/platform_utils.py b/platform_utils.py index e20198ee..45ffec78 100644 --- a/platform_utils.py +++ b/platform_utils.py @@ -156,6 +156,12 @@ def remove(path, missing_ok=False): os.rmdir(longpath) else: os.remove(longpath) + elif ( + e.errno == errno.EROFS + and missing_ok + and not os.path.exists(longpath) + ): + pass elif missing_ok and e.errno == errno.ENOENT: pass else: