From c40e5bd092046d5352df03cc59fcd6d7a3c3f335 Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Fri, 8 Jan 2021 05:00:38 +0100 Subject: [PATCH] Fix `ci_matrix.rb`. --- cmd/lib/ci_matrix.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/lib/ci_matrix.rb b/cmd/lib/ci_matrix.rb index 340550cba1..05ad06936c 100644 --- a/cmd/lib/ci_matrix.rb +++ b/cmd/lib/ci_matrix.rb @@ -20,7 +20,7 @@ module CiMatrix cask_content = path.read if cask_content.match?(/\bMacOS\s*\.version\b/m) && - RUNNERS.keys.none? { cask_content.include?(runner[:symbol].inspect) } + RUNNERS.keys.none? { |runner| cask_content.include?(runner[:symbol].inspect) } # If the cask depends on `MacOS.version`, test it on every possible macOS version. RUNNERS.keys else