summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorkali <kali@leap.se>2017-10-11 08:05:05 -0700
committerKali Kaneko <kali@leap.se>2017-10-11 18:40:32 +0200
commit6648d03c81d2c7281c9553340835fa2880777a4c (patch)
treedb4366f53c1a3aaf2a2c0f269ee108f18ff577ed /src
parentc63cd6a993a5ae4e5ca9b2516facab19cc2fadd2 (diff)
[feat] add gpg and pemfile in osx builds
These two details were blocking mail service from working in osx.
Diffstat (limited to 'src')
-rw-r--r--src/leap/bitmask/util.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/leap/bitmask/util.py b/src/leap/bitmask/util.py
index 6971ca0a..2cbea6e6 100644
--- a/src/leap/bitmask/util.py
+++ b/src/leap/bitmask/util.py
@@ -85,8 +85,7 @@ def get_gpg_bin_path():
gpgbin = os.path.abspath(
os.path.join(here(), "apps", "mail", "gpg.exe"))
elif platform.system() == "Darwin":
- gpgbin = os.path.abspath(
- os.path.join(here(), "apps", "mail", "gpg"))
+ gpgbin = '/Applications/Bitmask.app/Contents/Resources/gpg'
else:
gpgbin = os.path.abspath(
os.path.join(here(), "..", "apps", "mail", "gpg"))