mirror of
https://gitlab.com/openlp/packaging.git
synced 2024-12-22 13:02:50 +00:00
6 lines
172 B
Python
6 lines
172 B
Python
|
import os
|
||
|
import sys
|
||
|
|
||
|
if sys.platform == 'darwin': # TODO check if this is needed on linux
|
||
|
os.environ['SSL_CERT_FILE'] = os.path.join(sys._MEIPASS, 'lib', 'cert.pem')
|