Fixed ruff quotation marks (#3623)
This commit is contained in:
parent
46550221d1
commit
7fdfede270
|
|
@ -1177,10 +1177,10 @@ class Installer:
|
||||||
# Force EFI variables since bootctl detects arch-chroot
|
# Force EFI variables since bootctl detects arch-chroot
|
||||||
# as a container environemnt since v257 and skips them silently.
|
# as a container environemnt since v257 and skips them silently.
|
||||||
# https://github.com/systemd/systemd/issues/36174
|
# 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:
|
except SysCallError:
|
||||||
# Fallback, try creating the boot loader without touching the EFI variables
|
# 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:
|
# Loader configuration is stored in ESP/loader:
|
||||||
# https://man.archlinux.org/man/loader.conf.5
|
# https://man.archlinux.org/man/loader.conf.5
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue