diff options
Diffstat (limited to 'src/leap')
| -rw-r--r-- | src/leap/bitmask/util.py | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/src/leap/bitmask/util.py b/src/leap/bitmask/util.py index 59551285..3a7bacd2 100644 --- a/src/leap/bitmask/util.py +++ b/src/leap/bitmask/util.py @@ -67,7 +67,8 @@ def get_gpg_bin_path():                  os.path.join(here(), "..", "apps", "mail", "gpg"))      else:          try: -            gpgbin_options = which("gpg", path_extension='/usr/bin/') +            path_ext = '/usr/bin/:/usr/local/opt/gnupg/bin/' +            gpgbin_options = which("gpg", path_extension=path_ext)              # gnupg checks that the path to the binary is not a              # symlink, so we need to filter those and come up with              # just one option. @@ -89,7 +90,8 @@ def get_gpg_bin_path():      # binary, in case it was renamed using dpkg-divert or manually.      # We could just pick gpg2, but we need to solve #7564 first.      try: -        gpgbin_options = which("gpg1", path_extension='/usr/bin') +        path_ext = '/usr/bin/:/usr/local/opt/gnupg/bin/' +        gpgbin_options = which("gpg1", path_extension=path_ext)          for opt in gpgbin_options:              if not os.path.islink(opt):                  gpgbin = opt  | 
