We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 251070a commit f1b7bf0Copy full SHA for f1b7bf0
1 file changed
archinstall/lib/installer.py
@@ -1175,9 +1175,9 @@ def _add_systemd_bootloader(
1175
# TODO: This is a temporary workaround to deal with https://github.com/archlinux/archinstall/pull/3396#issuecomment-2996862019
1176
# the systemd_version check can be removed once `--variables=BOOL` is merged into systemd.
1177
if pacman_q_systemd := self.pacman.run('-Q systemd').trace_log:
1178
- pacman_version = int(pacman_q_systemd.split(b' ')[1][:3].decode())
+ systemd_version = int(pacman_q_systemd.split(b' ')[1][:3].decode())
1179
else:
1180
- pacman_version = 257 # This works as a safety workaround for this hot-fix
+ systemd_version = 257 # This works as a safety workaround for this hot-fix
1181
1182
# Install the boot loader
1183
try:
0 commit comments