Skip to content

Commit

Permalink
isoutils: Remove extraneous double quotes
Browse files Browse the repository at this point in the history
We were embedding extra double-quotes in the DOS labels
which was caught in the dosfstools 4.2 release.

Signed-off-by: Mark D Horn <[email protected]>
  • Loading branch information
mdhorn committed Feb 4, 2021
1 parent 644ba63 commit 12468f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isoutils/isoutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ func mkEfiBoot() error {

cmds := [][]string{
{"fallocate", "-l", "100M", tmpPaths[clrCdroot] + "/EFI/efiboot.img"},
{"mkfs.fat", "-n", "\"CLEAR_EFI\"", tmpPaths[clrCdroot] + "/EFI/efiboot.img"},
{"mkfs.fat", "-n", "CLEAR_EFI", tmpPaths[clrCdroot] + "/EFI/efiboot.img"},
{"mount", "-t", "vfat", "-o", "loop", tmpPaths[clrCdroot] + "/EFI/efiboot.img", tmpPaths[clrEfi]},
{"cp", "-pr", tmpPaths[clrImgEfi] + "/.", tmpPaths[clrEfi]},
}
Expand Down

0 comments on commit 12468f4

Please sign in to comment.