From 595b32ce357a472f433e643456987c4ea6055dd5 Mon Sep 17 00:00:00 2001 From: unclegedd Date: Wed, 5 Jun 2024 12:16:11 -0500 Subject: [PATCH] WIP: empty zarf opts --- src/pkg/bundle/inspect.go | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/pkg/bundle/inspect.go b/src/pkg/bundle/inspect.go index e7a1c51e8..3b5845e30 100644 --- a/src/pkg/bundle/inspect.go +++ b/src/pkg/bundle/inspect.go @@ -83,8 +83,6 @@ func (b *Bundle) Inspect() error { // show the bundle's metadata zarfUtils.ColorPrintYAML(b.bundle, nil, false) - // TODO: showing package metadata? - // TODO: could be cool to have an interactive mode that lets you select a package and show its metadata return nil } @@ -104,10 +102,8 @@ func (b *Bundle) extractImagesFromPackages() ([]string, error) { } source := zarfSources.OCISource{ - ZarfPackageOptions: &zarfTypes.ZarfPackageOptions{ - PublicKeyPath: "", - }, - Remote: remote, + ZarfPackageOptions: &zarfTypes.ZarfPackageOptions{}, + Remote: remote, } tmpDir, err := zarfUtils.MakeTempDir(config.CommonOptions.TempDirectory)