[molecule] fix mkisofs title argument

This commit is contained in:
Fabio Erculiani
2009-10-27 21:09:26 +01:00
parent 3d3ae2c6dc
commit 8ba46f7635
+2 -2
View File
@@ -491,8 +491,8 @@ class IsoHandler(GenericExecutionStep):
args.extend(self.Config['iso_builder_builtin_args'])
args.extend(self.metadata.get('extra_mkisofs_parameters',[]))
if self.iso_title.strip():
args.extend(["-V",'"',self.iso_title[:32],'"'])
args.extend(['-o',self.dest_iso,self.source_path])
args.extend(["-V", '"', self.iso_title[:30], '"'])
args.extend(['-o',self.dest_iso, self.source_path])
self.Output.updateProgress("[%s|%s] %s: %s" % (
blue("IsoHandler"), darkred(self.spec_name),
_("spawning"), args,