Skip to content
Snippets Groups Projects
Commit 65c1ef7c authored by demmm's avatar demmm
Browse files

[initcpiocfg] fix install failure due to extra s

parent 0403749b
No related branches found
No related tags found
No related merge requests found
...@@ -128,7 +128,7 @@ def write_mkinitcpio_lines(hooks, modules, files, root_mount_point): ...@@ -128,7 +128,7 @@ def write_mkinitcpio_lines(hooks, modules, files, root_mount_point):
line = "HOOKS=\"{!s}\"".format(' '.join(hooks)) line = "HOOKS=\"{!s}\"".format(' '.join(hooks))
elif line.startswith("MODULES"): elif line.startswith("MODULES"):
line = "MODULES=\"{!s}\"".format(' '.join(modules)) line = "MODULES=\"{!s}\"".format(' '.join(modules))
elif lines.startswith("FILES"): elif line.startswith("FILES"):
line = "FILES=\"{!s}\"".format(' '.join(files)) line = "FILES=\"{!s}\"".format(' '.join(files))
mkinitcpio_file.write(line + "\n") mkinitcpio_file.write(line + "\n")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment