master and forks aren't dirty

old-commit-hash: 3f89834e4e8ed032e13f935aa9116050fd1722f7
This commit is contained in:
Adeeb Shihadeh
2022-01-17 13:51:30 -08:00
parent a317526771
commit aa72de42c5
-4
View File
@@ -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