Skip to content

Commit

Permalink
Pass a missing field
Browse files Browse the repository at this point in the history
  • Loading branch information
k0kubun committed Sep 22, 2023
1 parent 2065949 commit cc356eb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/processor/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,9 @@ func changeVersion(repo *git.Repository, fs billy.Filesystem, packageInfo packag
if err = pkgbuild.RenderPkgbuild(
packageInfo.Name,
pkgbuild.Pkgbuild{
Pkgver: version.StripV(latestVersion.Version()),
SHA256Sum: sha256Sum,
Pkgver: version.StripV(latestVersion.Version()),
SHA256Sum: sha256Sum,
SHA256SumAarch64: sha256SumAarch64,
},
pkgbuildFile,
); err != nil {
Expand Down

0 comments on commit cc356eb

Please sign in to comment.