Commit 35b0dbb4 authored by Chris Lamb's avatar Chris Lamb 👀
Browse files

Mask stderr from extract-vmlinux script.

parent ffa385d3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ class VmlinuzContainer(Archive):
            subprocess.check_call(
                [script, self.source.path],
                stdout=f,
                stderr=None,
                stderr=subprocess.DEVNULL,
            )

        return dest_path