Skip to content

Commit

Permalink
fix mkisofs call (fix #11)
Browse files Browse the repository at this point in the history
  • Loading branch information
zdimension committed Dec 23, 2019
1 parent 7ef8c51 commit 07941fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SharpBoot/Forms/GenIsoFrm.cs
Expand Up @@ -440,7 +440,7 @@ public void Generate()
}
};
p.StartInfo.Arguments +=
" -publisher \"SharpBoot\" -no-emul-boot -boot-load-size 4 -boot-info-table -r -J -b boot/grub/eltorito.img";
" -publisher \"SharpBoot\" -iso-level 3 -no-emul-boot -boot-load-size 4 -boot-info-table -r -J -b boot/grub/eltorito.img";
p.StartInfo.Arguments += " -o \"" + OutputFilepath + "\" \"" + isodir + "\"";
p.EnableRaisingEvents = true;

Expand Down

0 comments on commit 07941fb

Please sign in to comment.