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 0a91027 commit 7f90250Copy full SHA for 7f90250
ugrd/base/cpio.py
@@ -1,5 +1,5 @@
1
__author__ = 'desultory'
2
-__version__ = '1.2.0'
+__version__ = '1.2.1'
3
4
5
from subprocess import run, CompletedProcess
@@ -18,7 +18,7 @@ def build_gen_init_cpio(self, cpio_path: Path) -> CompletedProcess:
18
19
if source_file.exists():
20
self.logger.info("Building gen_init_cpio at: %s" % source_file)
21
- return self._run(['gcc', '-o', cpio_path, source_file])
+ return self._run(['gcc', '-o', str(cpio_path), str(source_file)])
22
else:
23
raise FileNotFoundError("gen_init_cpio source file not found at: %s" % source_file)
24
0 commit comments