diff --git a/selfdrive/version.py b/selfdrive/version.py index d94a098e8b..f2570cd305 100644 --- a/selfdrive/version.py +++ b/selfdrive/version.py @@ -111,10 +111,6 @@ def is_dirty() -> bool: pass dirty = (subprocess.call(["git", "diff-index", "--quiet", branch, "--"]) != 0) - - dirty = dirty or (not is_comma_remote()) - dirty = dirty or ('master' in branch) - except subprocess.CalledProcessError: cloudlog.exception("git subprocess failed while checking dirty") dirty = True