mirror of https://github.com/Syncplay/syncplay
Remove specific path from pyinstaller script
This commit is contained in:
parent
fe224c0316
commit
53dcb17eaf
|
@ -1,10 +1,13 @@
|
|||
# -*- mode: python -*-
|
||||
|
||||
import os
|
||||
workdir = os.getcwd()
|
||||
|
||||
block_cipher = None
|
||||
|
||||
|
||||
a = Analysis(['syncplayClient.py'],
|
||||
pathex=['C:\\Users\\Alberto\\Documents\\syncplay-py3-qtpy-pyside2'],
|
||||
pathex=[workdir],
|
||||
binaries=[],
|
||||
datas=[('resources/*', 'resources')],
|
||||
hiddenimports=['PySide2', 'PySide2.QtCore', 'PySide2.QtWidgets'],
|
||||
|
|
|
@ -1,10 +1,13 @@
|
|||
# -*- mode: python -*-
|
||||
|
||||
import os
|
||||
workdir = os.getcwd()
|
||||
|
||||
block_cipher = None
|
||||
|
||||
|
||||
a = Analysis(['syncplayClient.py'],
|
||||
pathex=['C:\\Users\\Alberto\\Documents\\syncplay-py3-qtpy-pyside2'],
|
||||
pathex=[workdir],
|
||||
binaries=[],
|
||||
datas=[('resources/*', 'resources')],
|
||||
hiddenimports=['PySide2', 'PySide2.QtCore', 'PySide2.QtWidgets'],
|
||||
|
|
Loading…
Reference in New Issue