Skip to content

Commit

Permalink
Update src/pkg/bundler/bundle.go
Browse files Browse the repository at this point in the history
Co-authored-by: Wayne Starr <Racer159@users.noreply.github.com>
  • Loading branch information
UncleGedd and Racer159 authored Aug 2, 2023
1 parent e0d2a88 commit 60995bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pkg/bundler/bundle.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,11 @@ func Bundle(r *oci.OrasRemote, bundle *types.UDSPackage, signature []byte) error
}

// push the bundle's metadata
zarfBundleYamlBytes, err := goyaml.Marshal(bundle)
bundleYamlBytes, err := goyaml.Marshal(bundle)
if err != nil {
return err
}
zarfBundleYamlDesc, err := r.PushLayer(zarfBundleYamlBytes, oci.ZarfLayerMediaTypeBlob)
bundleYamlDesc, err := r.PushLayer(bundleYamlBytes, oci.ZarfLayerMediaTypeBlob)
if err != nil {
return err
}
Expand Down

0 comments on commit 60995bb

Please sign in to comment.