SHA256
1
0
forked from pool/rpmlint
rpmlint/rpmlint-pkg-quoting.diff

14 lines
595 B
Diff
Raw Normal View History

Index: Pkg.py
===================================================================
--- Pkg.py.orig
+++ Pkg.py
@@ -496,7 +496,7 @@ class Pkg:
dir = self.dirname)
# TODO: better shell escaping or sequence based command invocation
command_str = \
- 'rpm2cpio "%s" | (cd "%s"; cpio -id); chmod -R +rX "%s"' % \
+ "rpm2cpio '%s' | (cd '%s'; cpio -id); chmod -R +rX '%s'" % \
(self.filename, self.dirname, self.dirname)
cmd = commands.getstatusoutput(command_str)
self.extracted = True