Commit 53b43f4d authored by brizental's avatar brizental
Browse files

fixup! BB 43564: Modify ./mach bootstrap for Base Browser

EXTRA: Stop asking to configure git during bootstrap.
parent 36c9932d
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -346,6 +346,8 @@ class Bootstrapper:
        getattr(self.instance, "ensure_%s_packages" % application)()

    def check_code_submission(self, checkout_root: Path):
        return

        if self.instance.no_interactive or which("moz-phab"):
            return

@@ -461,8 +463,7 @@ class Bootstrapper:
                repo.configure(state_dir)

        # Offer to configure Git, if the current checkout or repo type is Git.
        elif git and checkout_type == "git":
            should_configure_git = False
        elif False and git and checkout_type == "git":
            if not self.instance.no_interactive:
                should_configure_git = self.instance.prompt_yesno(prompt=CONFIGURE_GIT)
            else: