File tree Expand file tree Collapse file tree
biglinux-livecd/usr/share/biglinux/calamares/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -150,8 +150,11 @@ def get_sfs_folder(self) -> Optional[str]:
150150 def get_efi_manager_command (self ) -> Optional [str ]:
151151 """Get the command to manage EFI entries if available."""
152152 command_name = COMMANDS .get ("efi_manager" )
153- if command_name and check_command_exists (command_name ):
154- return command_name
153+ if command_name :
154+ # Check availability of the main executable
155+ executable = command_name .split ()[0 ]
156+ if check_command_exists (executable ):
157+ return command_name
155158 return None
156159
157160 def can_manage_efi_entries (self ) -> bool :
Original file line number Diff line number Diff line change 4949 "efi_check" : "[ -d /sys/firmware/efi ]" ,
5050 "grub_restore" : "biglinux-grub-restore" ,
5151 "timeshift" : "timeshift-launcher" ,
52- "efi_manager" : "qefientrymanager-launcher " ,
52+ "efi_manager" : "bigsudo QEFIEntryManager " ,
5353 "calamares" : "calamares" ,
5454}
5555
You can’t perform that action at this time.
0 commit comments