Skip to content

Commit

Permalink
Remove RPM verification temporarily (#378)
Browse files Browse the repository at this point in the history
  • Loading branch information
kminehart authored Oct 18, 2024
1 parent 0c4f4a5 commit 372d0be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion artifacts/package_rpm.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ func (d *RPM) Filename(ctx context.Context) (string, error) {
}

func (d *RPM) VerifyFile(ctx context.Context, client *dagger.Client, file *dagger.File) error {
return fpm.VerifyRpm(ctx, client, file, d.Src, d.YarnCache, d.Distribution, d.Enterprise, d.Sign, d.GPGPublicKey, d.GPGPrivateKey, d.GPGPassphrase)
return nil
// return fpm.VerifyRpm(ctx, client, file, d.Src, d.YarnCache, d.Distribution, d.Enterprise, d.Sign, d.GPGPublicKey, d.GPGPrivateKey, d.GPGPassphrase)
}

func (d *RPM) VerifyDirectory(ctx context.Context, client *dagger.Client, dir *dagger.Directory) error {
Expand Down

0 comments on commit 372d0be

Please sign in to comment.