mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 04:05:39 +01:00
appveyor: ship cacert.pem when built with nuitka
This commit is contained in:
parent
e3939a4bbe
commit
43b67dfa86
@ -18,7 +18,9 @@ test_script:
|
||||
|
||||
after_test:
|
||||
- "mkdir svtplay-dl"
|
||||
- "mkdir svtplay-dl\\certifi"
|
||||
- "nuitka --recurse-all --output svtplay-dl bin/svtplay-dl"
|
||||
- "copy %PYTHON%\\lib\\site-packages\\certifi\\cacert.pem svtplay-dl\\certifi"
|
||||
- "dir svtplay-dl"
|
||||
- "svtplay-dl\\svtplay-dl.exe --version"
|
||||
- "rmdir /q /s svtplay-dl\\svtplay-dl.build"
|
||||
|
@ -3,6 +3,7 @@
|
||||
from __future__ import absolute_import, unicode_literals
|
||||
|
||||
import sys
|
||||
import os
|
||||
import logging
|
||||
import yaml
|
||||
|
||||
@ -14,6 +15,10 @@ from svtplay_dl.service.cmore import Cmore
|
||||
|
||||
log = logging.getLogger('svtplay_dl')
|
||||
|
||||
# hack to get around missing cacert.pem in nuitka
|
||||
if sys.platform == "win32" and sys.argv[0].endswith('.exe'):
|
||||
os.environ["REQUESTS_CA_BUNDLE"] = "./certifi/cacert.pem"
|
||||
|
||||
|
||||
def setup_log(silent, verbose=False):
|
||||
logging.addLevelName(25, "INFO")
|
||||
|
Loading…
Reference in New Issue
Block a user