We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5ed3f8 commit c1d9011Copy full SHA for c1d9011
ugrd/initramfs_generator.py
@@ -1,6 +1,6 @@
1
2
__author__ = "desultory"
3
-__version__ = "0.9.1"
+__version__ = "0.9.3"
4
5
from tomllib import load
6
from typing import Union
@@ -231,7 +231,7 @@ def generate_init(self) -> None:
231
custom_init.insert(2, "source /init_funcs.sh")
232
233
if custom_init:
234
- self._write('_custom_init_file', custom_init, 0o755)
+ self._write(self.config_dict['_custom_init_file'], custom_init, 0o755)
235
init += custom_init
236
237
self._write('init', init, 0o755)
0 commit comments