mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 10:55:46 -05:00
Merge pull request #771 from n3rdopolis/patch-1
Correct update-initramfs command (add -t for cases where there already is one on disk)
This commit is contained in:
commit
58b2abc9ac
1 changed files with 2 additions and 1 deletions
|
@ -27,7 +27,8 @@ def run():
|
|||
|
||||
:return:
|
||||
"""
|
||||
return_code = target_env_call(["update-initramfs", "-k", "all", "-u"])
|
||||
return_code = target_env_call(["update-initramfs", "-k", "all", "-c",
|
||||
"-t"])
|
||||
|
||||
if return_code != 0:
|
||||
return (
|
||||
|
|
Loading…
Add table
Reference in a new issue