- Don't quote things passed to mkisofs, not a shell

This commit is contained in:
Jesse Keating 2007-07-20 14:40:32 -04:00 committed by Jesse Keating
parent 6e819ae0f1
commit 8dd1c2aa93
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
* Fri Jul 20 2007 Jesse Keating <jkeating@redhat.com>
- Don't quote things passed to mkisofs, not a shell
* Fri Jul 06 2007 Jesse Keating <jkeating@redhat.com>
- Include memtest86+ in the "Fedora" manifest

View File

@ -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'))