From ddeadaefce845256be3371c0d914f73274586376 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Wed, 2 Mar 2022 05:19:41 +0000 Subject: [PATCH] dev-cmd/pr-pull: require unzip to be installed --- Library/Homebrew/dev-cmd/pr-pull.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Library/Homebrew/dev-cmd/pr-pull.rb b/Library/Homebrew/dev-cmd/pr-pull.rb index 13cc8e4f4d..be03cea20d 100644 --- a/Library/Homebrew/dev-cmd/pr-pull.rb +++ b/Library/Homebrew/dev-cmd/pr-pull.rb @@ -335,6 +335,9 @@ module Homebrew def pr_pull args = pr_pull_args.parse + # Needed when extracting the CI artifact. + ensure_executable!("unzip", reason: "extracting CI artifacts") + workflows = args.workflows.presence || ["tests.yml"] artifact = args.artifact || "bottles" tap = Tap.fetch(args.tap || CoreTap.instance.name)