mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00
nixos/limine: cast partition index to string (#390732)
This commit is contained in:
parent
7048529f92
commit
2cc1d33489
1 changed files with 1 additions and 1 deletions
|
@ -395,7 +395,7 @@ def main():
|
|||
limine_deploy_args = [limine_binary, 'bios-install', device]
|
||||
|
||||
if config('partitionIndex'):
|
||||
limine_deploy_args.append(config('partitionIndex'))
|
||||
limine_deploy_args.append(str(config('partitionIndex')))
|
||||
|
||||
if config('forceMbr'):
|
||||
limine_deploy_args += '--force-mbr'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue