Commit 428f3fa0 authored by Michael Froman's avatar Michael Froman
Browse files

Bug 1833888 - extract-for-git.py should ignore changes in moz-patch-stack directory. r=ng DONTBUILD

We don't want to track those changes in the github repo since that directory
is a Mozilla only convenience to help with the fast-forward process.

Differential Revision: https://phabricator.services.mozilla.com/D178450
parent d8f4edcb
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -70,6 +70,9 @@ def filter_nonwebrtc(commit):
            line.startswith("diff --git a/" + LIBWEBRTC_DIR)
            and not line.startswith("diff --git a/" + LIBWEBRTC_DIR + "/build")
            and not line.startswith("diff --git a/" + LIBWEBRTC_DIR + "/third_party")
            and not line.startswith(
                "diff --git a/" + LIBWEBRTC_DIR + "/moz-patch-stack"
            )
            and not line.endswith("moz.build")
        ):
            skipping = False