Skip to content

Commit 7fdfede

Browse files
authored
Fixed ruff quotation marks (#3623)
1 parent 4655022 commit 7fdfede

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

archinstall/lib/installer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1177,10 +1177,10 @@ def _add_systemd_bootloader(
11771177
# Force EFI variables since bootctl detects arch-chroot
11781178
# as a container environemnt since v257 and skips them silently.
11791179
# https://github.com/systemd/systemd/issues/36174
1180-
SysCommand(f"arch-chroot {self.target} bootctl --variables=yes {' '.join(bootctl_options)} install")
1180+
SysCommand(f'arch-chroot {self.target} bootctl --variables=yes {" ".join(bootctl_options)} install')
11811181
except SysCallError:
11821182
# Fallback, try creating the boot loader without touching the EFI variables
1183-
SysCommand(f"arch-chroot {self.target} bootctl --variables=no {' '.join(bootctl_options)} install")
1183+
SysCommand(f'arch-chroot {self.target} bootctl --variables=no {" ".join(bootctl_options)} install')
11841184

11851185
# Loader configuration is stored in ESP/loader:
11861186
# https://man.archlinux.org/man/loader.conf.5

0 commit comments

Comments
 (0)