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 9640aab commit 7275ca1Copy full SHA for 7275ca1
ugrd/base/cpio.py
@@ -1,5 +1,5 @@
1
__author__ = "desultory"
2
-__version__ = "0.0.3"
+__version__ = "0.0.4"
3
4
from subprocess import run
5
@@ -8,7 +8,7 @@ def build_gen_init_cpio(self):
8
"""
9
Builds the gen_init_cpio source file if it exists
10
11
- source_file = self.config_dict['gen_init_cpio_path'] / ".c"
+ source_file = self.config_dict['gen_init_cpio_path'].with_suffix(".c")
12
if source_file.exists():
13
self.logger.info("Building gen_init_cpio at: %s" % source_file)
14
return self._run(['gcc', '-o', self.config_dict['gen_init_cpio_path'], source_file])
0 commit comments