Commit a4aecad9 authored by teutat3s's avatar teutat3s Committed by Yureka
Browse files

electron-source: fix update script for electron >= 34

parent 69698fe2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -189,7 +189,7 @@ class GitilesRepo(Repo):

        if url == "https://chromium.googlesource.com/chromium/src.git":
            self.args["postFetch"] = "rm -r $out/third_party/blink/web_tests; "
            self.args["postFetch"] += "rm -r $out/third_party/hunspell/tests; "
            self.args["postFetch"] += "rm -rf $out/third_party/hunspell/tests; "
            self.args["postFetch"] += "rm -r $out/content/test/data; "
            self.args["postFetch"] += "rm -rf $out/courgette/testdata; "
            self.args["postFetch"] += "rm -r $out/extensions/test/data; "
@@ -470,7 +470,7 @@ def get_electron_info(major_version: str) -> Tuple[str, str, GitHubRepo]:
            },
            **{
            f"checkout_{arch}": True
            for arch in ["x64", "arm64", "arm", "x86", "mips", "mips64"]
            for arch in ["x64", "arm64", "arm", "x86", "mips", "mips64", "ppc"]
            },
        },
        "src/electron",