From 06d0f59a294cfbed67eee3ff39aa40f0d2d73840 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Mon, 3 Feb 2025 17:08:55 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Douglas Eichelberger <697964+dduugg@users.noreply.github.com> --- Library/Homebrew/dev-cmd/verify.rb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Library/Homebrew/dev-cmd/verify.rb b/Library/Homebrew/dev-cmd/verify.rb index 9fec3c2dce..dbda75a87a 100644 --- a/Library/Homebrew/dev-cmd/verify.rb +++ b/Library/Homebrew/dev-cmd/verify.rb @@ -2,17 +2,15 @@ # frozen_string_literal: true require "abstract_command" -require "formula" -require "date" require "attestation" module Homebrew module DevCmd - class VerifyCmd < AbstractCommand + class Verify < AbstractCommand cmd_args do description <<~EOS Verify the build provenance of bottles using GitHub's attestation tools. - This is done by first fetching the given bottles, and then verifying + This is done by first fetching the given bottles and then verifying their provenance. Note that this command depends on the GitHub CLI. Run `brew install gh`.