From 6254f159676c8ac53e2a89a9d319416345967810 Mon Sep 17 00:00:00 2001 From: Kate Date: Thu, 2 Dec 2021 20:09:07 +0000 Subject: [PATCH] =?UTF-8?q?Set=20extra-repositories=20to=20be=20empty=20by?= =?UTF-8?q?=20default=20(ocaml-beta-repository=20isn=E2=80=99t=20useful=20?= =?UTF-8?q?since=20opam-2.1/ocaml-4.12)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/server_configfile.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/server_configfile.ml b/lib/server_configfile.ml index e2d19f1..e50c0fe 100644 --- a/lib/server_configfile.ml +++ b/lib/server_configfile.ml @@ -203,7 +203,7 @@ let set_defaults conf = if Option.is_none conf.default_repository then conf.default_repository <- Some (Intf.Github.create "ocaml/opam-repository"); if Option.is_none conf.extra_repositories then - conf.extra_repositories <- Some [Intf.Repository.create ~name:"beta" ~github:"ocaml/ocaml-beta-repository" ~for_switches:None]; + conf.extra_repositories <- Some []; if Option.is_none conf.with_test then conf.with_test <- Some false; (* TODO: Enable by default in the future (takes 1.5x the time) *) if Option.is_none conf.with_lower_bound then