From de6650683b9ef4280a51e2c66553e376bb9e18d2 Mon Sep 17 00:00:00 2001 From: JCount Date: Tue, 14 Mar 2017 17:11:39 -0400 Subject: [PATCH] gpg2_requirement: indicate 2.1.x "modern" series is supported as well --- Library/Homebrew/requirements/gpg2_requirement.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/requirements/gpg2_requirement.rb b/Library/Homebrew/requirements/gpg2_requirement.rb index 00bf4183a7..1784b4c9da 100644 --- a/Library/Homebrew/requirements/gpg2_requirement.rb +++ b/Library/Homebrew/requirements/gpg2_requirement.rb @@ -7,6 +7,6 @@ class GPG2Requirement < Requirement # MacGPG2/GPGTools installs GnuPG 2.0.x as a vanilla `gpg` symlink # pointing to `gpg2`, as do we. Ensure we're actually using a 2.0 `gpg`. - # Temporarily, only support 2.0.x rather than the 2.1.x "modern" series. + # Support both the 2.0.x "stable" and 2.1.x "modern" series. satisfy(build_env: false) { Gpg.gpg2 || Gpg.gpg } end