diff options
| author | Dominyk Tiller | 2017-08-29 05:20:10 +0100 |
|---|---|---|
| committer | Dominyk Tiller | 2017-09-01 01:43:57 +0100 |
| commit | c75a8221a5115dc45634ece380266a8a63c0458d (patch) | |
| tree | f01369da4fd528508feaff6527c4052da1b38331 /Library | |
| parent | 380afe2f2df9c4b341484571dc1b2d2d54f7400b (diff) | |
| download | brew-c75a8221a5115dc45634ece380266a8a63c0458d.tar.bz2 | |
gpg2_requirement: update code comments
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/requirements/gpg2_requirement.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/requirements/gpg2_requirement.rb b/Library/Homebrew/requirements/gpg2_requirement.rb index d570983eb..ebdd71f6e 100644 --- a/Library/Homebrew/requirements/gpg2_requirement.rb +++ b/Library/Homebrew/requirements/gpg2_requirement.rb @@ -5,8 +5,8 @@ class GPG2Requirement < Requirement fatal true default_formula "gnupg" - # GPGTools installs GnuPG 2.0.x as a vanilla `gpg` symlink - # pointing to `gpg2`. Homebrew install 2.1.x as a non-symlink `gpg`. - # We support both the 2.0.x "stable" and 2.1.x "modern" series here. + # GPGTools installs GnuPG 2.0.x as a `gpg` symlink pointing + # to `gpg2`. Our `gnupg` installs only a non-symlink `gpg`. + # The aim is to retain support for any version above 2.0. satisfy(build_env: false) { Gpg.gpg || Gpg.gpg2 } end |
