aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJCount2017-03-14 17:11:39 -0400
committerJCount2017-03-15 16:05:11 -0400
commitde6650683b9ef4280a51e2c66553e376bb9e18d2 (patch)
treedb212f69d29fac40d47c8a3fcc24447812dcc741 /Library
parent7058c089a6c38681d1d84cfec9f40f499a3cf885 (diff)
downloadbrew-de6650683b9ef4280a51e2c66553e376bb9e18d2.tar.bz2
gpg2_requirement: indicate 2.1.x "modern" series is supported as well
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/requirements/gpg2_requirement.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/requirements/gpg2_requirement.rb b/Library/Homebrew/requirements/gpg2_requirement.rb
index 00bf4183a..1784b4c9d 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