From bf239f668b713fbf1d976835695d310689f620a1 Mon Sep 17 00:00:00 2001 From: Heather Garvison Date: Wed, 14 Aug 2024 14:05:42 -0400 Subject: [PATCH] update dmverity tool to fix bug where hdv creation fails to move all VHDs from the temp dir Signed-off-by: Heather Garvison --- cmd/dmverity-vhd/main.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/cmd/dmverity-vhd/main.go b/cmd/dmverity-vhd/main.go index f0aad0a3..2fa818b4 100644 --- a/cmd/dmverity-vhd/main.go +++ b/cmd/dmverity-vhd/main.go @@ -488,9 +488,6 @@ var createVHDCommand = cli.Command{ sanitisedFileName := sanitiseVHDFilename(layerID) suffixes := []string{".vhd"} - if verityHashDev { - suffixes = append(suffixes, ".hash-dev.vhd") - } for _, srcSuffix := range suffixes { src := filepath.Join(os.TempDir(), sanitisedFileName+srcSuffix)