Skip to content

Commit f1b7bf0

Browse files
committed
Spelling error
1 parent 251070a commit f1b7bf0

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
@@ -1175,9 +1175,9 @@ def _add_systemd_bootloader(
11751175
# TODO: This is a temporary workaround to deal with https://github.com/archlinux/archinstall/pull/3396#issuecomment-2996862019
11761176
# the systemd_version check can be removed once `--variables=BOOL` is merged into systemd.
11771177
if pacman_q_systemd := self.pacman.run('-Q systemd').trace_log:
1178-
pacman_version = int(pacman_q_systemd.split(b' ')[1][:3].decode())
1178+
systemd_version = int(pacman_q_systemd.split(b' ')[1][:3].decode())
11791179
else:
1180-
pacman_version = 257 # This works as a safety workaround for this hot-fix
1180+
systemd_version = 257 # This works as a safety workaround for this hot-fix
11811181

11821182
# Install the boot loader
11831183
try:

0 commit comments

Comments
 (0)