gpg2_requirement: indicate 2.1.x "modern" series is supported as well

This commit is contained in:
JCount 2017-03-14 17:11:39 -04:00
parent 7058c089a6
commit de6650683b

View File

@ -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