Make cpio listing more platform compatible.
This commit is contained in:
parent
40639cb172
commit
9a8ef2678d
|
@ -30,7 +30,7 @@ def extract_cpio (archive, compression, cmd, **kwargs):
|
||||||
|
|
||||||
def list_cpio (archive, compression, cmd, **kwargs):
|
def list_cpio (archive, compression, cmd, **kwargs):
|
||||||
"""List a CPIO archive."""
|
"""List a CPIO archive."""
|
||||||
cmdlist = [cmd, '-t']
|
cmdlist = [cmd, '-i', '-t']
|
||||||
if kwargs['verbose']:
|
if kwargs['verbose']:
|
||||||
cmdlist.append('-v')
|
cmdlist.append('-v')
|
||||||
cmdlist.extend(['-F', archive])
|
cmdlist.extend(['-F', archive])
|
||||||
|
|
Loading…
Reference in New Issue