diff --git a/Changelog b/Changelog index d8d469ba..48d8a8f6 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +* Fri Jul 20 2007 Jesse Keating +- Don't quote things passed to mkisofs, not a shell + * Fri Jul 06 2007 Jesse Keating - Include memtest86+ in the "Fedora" manifest diff --git a/pypungi/pungi.py b/pypungi/pungi.py index ec58c079..cc2950b8 100755 --- a/pypungi/pungi.py +++ b/pypungi/pungi.py @@ -109,7 +109,7 @@ class Pungi: buildinstall.append(self.config.get('default', 'version')) buildinstall.append('--release') - buildinstall.append('"%s %s"' % (self.config.get('default', 'product_name'), self.config.get('default', 'version'))) + buildinstall.append('%s %s' % (self.config.get('default', 'product_name'), self.config.get('default', 'version'))) buildinstall.append('--prodpath') buildinstall.append(self.config.get('default', 'product_path'))