From a741b1a5306ee203203ca1dbc33add2c512f8dcc Mon Sep 17 00:00:00 2001 From: "Dylan M. Taylor" Date: Sat, 12 Feb 2022 17:42:48 -0500 Subject: Don't enable multilib-testing unless we want multilib enabled. (#974) * Don't enable multilib-testing unless we want multilib enabled. * flake8 * Rename variable to make code more clear --- archinstall/lib/installer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'archinstall/lib') diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index e22883cb..c8ff612c 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -289,7 +289,7 @@ class Installer: def post_install_check(self, *args :str, **kwargs :str) -> List[str]: return [step for step, flag in self.helper_flags.items() if flag is False] - def enable_testing_repositories(self): + def enable_testing_repositories(self, enable_multilib_testing=False): # Set up a regular expression pattern of a commented line containing 'testing' within [] pattern = re.compile("^#\\[.*testing.*\\]$") @@ -303,7 +303,7 @@ class Installer: # Open the file again in write mode, to replace the contents with open("/etc/pacman.conf", "w") as pacman_conf: for line in lines: - if pattern.match(line): + if pattern.match(line) and (enable_multilib_testing or 'multilib' not in line): # If this is the [] block containing 'testing', uncomment it and set the matched tracking boolean. pacman_conf.write(line.lstrip('#')) matched = True -- cgit v1.2.3-54-g00ecf