From 7fdfede2703b7d20143344e0330db21256ce4645 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Sun, 22 Jun 2025 14:16:27 +0200 Subject: [PATCH] Fixed ruff quotation marks (#3623) --- archinstall/lib/installer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index b0126dcb..749fec0a 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -1177,10 +1177,10 @@ class Installer: # Force EFI variables since bootctl detects arch-chroot # as a container environemnt since v257 and skips them silently. # https://github.com/systemd/systemd/issues/36174 - SysCommand(f"arch-chroot {self.target} bootctl --variables=yes {' '.join(bootctl_options)} install") + SysCommand(f'arch-chroot {self.target} bootctl --variables=yes {" ".join(bootctl_options)} install') except SysCallError: # Fallback, try creating the boot loader without touching the EFI variables - SysCommand(f"arch-chroot {self.target} bootctl --variables=no {' '.join(bootctl_options)} install") + SysCommand(f'arch-chroot {self.target} bootctl --variables=no {" ".join(bootctl_options)} install') # Loader configuration is stored in ESP/loader: # https://man.archlinux.org/man/loader.conf.5