From 238ac19ba975ffcdbe7b792b30a1409d219541da Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Mon, 14 Dec 2020 10:51:03 -0800 Subject: [PATCH] remove fsck logging in updated --- selfdrive/updated.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/selfdrive/updated.py b/selfdrive/updated.py index c9f77caf81..f8f540efc2 100755 --- a/selfdrive/updated.py +++ b/selfdrive/updated.py @@ -210,11 +210,6 @@ def finalize_update() -> None: shutil.rmtree(FINALIZED) shutil.copytree(OVERLAY_MERGED, FINALIZED, symlinks=True) - # Log git repo corruption - fsck = run(["git", "fsck", "--no-progress"], FINALIZED).rstrip() - if len(fsck): - cloudlog.error(f"found git corruption, git fsck:\n{fsck}") - set_consistent_flag(True) cloudlog.info("done finalizing overlay")