Skip to content
Snippets Groups Projects
Commit ff80c13e authored by Holger's avatar Holger
Browse files

Fix beempy pyinstaller script

parent 17d05771
No related branches found
No related tags found
No related merge requests found
...@@ -5,13 +5,14 @@ import glob ...@@ -5,13 +5,14 @@ import glob
import platform import platform
from PyInstaller.utils.hooks import exec_statement from PyInstaller.utils.hooks import exec_statement
import websocket import websocket
import certifi
from os.path import join, dirname, basename from os.path import join, dirname, basename
block_cipher = None block_cipher = None
os_name = platform.system() os_name = platform.system()
binaries = [] binaries = []
websocket_lib_path = dirname(websocket.__file__) websocket_lib_path = dirname(certifi.__file__)
websocket_cacert_file_path = join(websocket_lib_path, 'cacert.pem') websocket_cacert_file_path = join(websocket_lib_path, 'cacert.pem')
analysis_data = [ analysis_data = [
# For websocket library to find "cacert.pem" file, it must be in websocket # For websocket library to find "cacert.pem" file, it must be in websocket
......
...@@ -5,13 +5,14 @@ import glob ...@@ -5,13 +5,14 @@ import glob
import platform import platform
from PyInstaller.utils.hooks import exec_statement from PyInstaller.utils.hooks import exec_statement
import websocket import websocket
import certifi
from os.path import join, dirname, basename from os.path import join, dirname, basename
block_cipher = None block_cipher = None
os_name = platform.system() os_name = platform.system()
binaries = [] binaries = []
websocket_lib_path = dirname(websocket.__file__) websocket_lib_path = dirname(certifi.__file__)
websocket_cacert_file_path = join(websocket_lib_path, 'cacert.pem') websocket_cacert_file_path = join(websocket_lib_path, 'cacert.pem')
analysis_data = [ analysis_data = [
# For websocket library to find "cacert.pem" file, it must be in websocket # For websocket library to find "cacert.pem" file, it must be in websocket
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment