Skip to content

Commit 3ff0b45

Browse files
committed
rhel: update backup content-manifest path
The backup content-manifest path was incorrect as it didn't include the content_manifests directory. Signed-off-by: crozzy <joseph.crosland@gmail.com>
1 parent f00684c commit 3ff0b45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rhel/rhel.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func getContentManifest(ctx context.Context, sys fs.FS) (*contentManifest, error
2525
if err != nil {
2626
panic("programmer error: " + err.Error())
2727
}
28-
ms2, err := fs.Glob(sys, `usr/share/buildinfo/*.json`)
28+
ms2, err := fs.Glob(sys, `usr/share/buildinfo/content_manifests/*.json`)
2929
if err != nil {
3030
panic("programmer error: " + err.Error())
3131
}

0 commit comments

Comments
 (0)