From 2d700b6785d583782bbb3d76690866b64b969f52 Mon Sep 17 00:00:00 2001 From: "Kali Kaneko (leap communications)" Date: Tue, 22 Nov 2016 17:39:57 +0100 Subject: [bug] use the bundled gpg binary the bundle was trying to get the gpg binary from the config folder instead of the bundled binary. --- src/leap/bitmask/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/leap/bitmask/util.py b/src/leap/bitmask/util.py index 0283a03..0f2f428 100644 --- a/src/leap/bitmask/util.py +++ b/src/leap/bitmask/util.py @@ -64,8 +64,8 @@ def get_gpg_bin_path(): gpgbin = os.path.abspath( os.path.join(here(), "apps", "mail", "gpg")) else: - gpgbin = os.path.join( - get_path_prefix(), "..", "apps", "mail", "gpg") + gpgbin = os.path.abspath( + os.path.join(here(), "..", "apps", "mail", "gpg")) else: try: gpgbin_options = which("gpg", path_extension='/usr/bin/') -- cgit v1.2.3