Skip to content

Commit ff2914f

Browse files
committed
bootloader: Add missed bracket
Fixes: a9c6f3e Signed-off-by: Vasiliy Stelmachenok <[email protected]> (cherry picked from commit 0b72437)
1 parent 0c20580 commit ff2914f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/bootloader/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ def run_grub_install(fw_type, partitions, efi_directory, install_hybrid_grub):
639639

640640
if is_zfs:
641641
# Needs environment to be set for GRUB, so go via the shell
642-
check_target_env_call(["sh", "-c", "ZPOOL_VDEV_NAME_PATH=1 " + " ".join(grubinstall_command)]
642+
check_target_env_call(["sh", "-c", "ZPOOL_VDEV_NAME_PATH=1 " + " ".join(grubinstall_command)])
643643
else:
644644
check_target_env_call(grubinstall_command)
645645

0 commit comments

Comments
 (0)