From 12468f4b85762f8cf0e3025014c7d24655d00efb Mon Sep 17 00:00:00 2001 From: Mark D Horn Date: Tue, 2 Feb 2021 14:29:47 -0800 Subject: [PATCH] isoutils: Remove extraneous double quotes 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 --- isoutils/isoutils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isoutils/isoutils.go b/isoutils/isoutils.go index 1bec8f64..a4b67728 100644 --- a/isoutils/isoutils.go +++ b/isoutils/isoutils.go @@ -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]}, }