Skip to content

Commit

Permalink
cmd: Fix rofl build for Oasis Core 24.3
Browse files Browse the repository at this point in the history
  • Loading branch information
matevz committed Oct 16, 2024
1 parent 3c998d5 commit 34639ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/rofl/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@ var (
if b, err = os.ReadFile(src); err != nil {
cobra.CheckErr(fmt.Errorf("failed to load asset '%s': %w", src, err))
}
_ = bnd.Add(dst, b)
_ = bnd.Add(dst, bundle.NewBytesData(b))
}
_ = bnd.Add(sigName, sigData)
_ = bnd.Add(sigName, bundle.NewBytesData(sigData))

// Write the bundle out.
outFn := fmt.Sprintf("%s.orc", bnd.Manifest.Name)
Expand Down

0 comments on commit 34639ef

Please sign in to comment.