Skip to content

Commit

Permalink
Using current directory as home for build
Browse files Browse the repository at this point in the history
  • Loading branch information
sulmone committed Jan 25, 2018
1 parent a616ce5 commit 307f411
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions contrib/build-wine/deterministic.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
from PyInstaller.utils.hooks import collect_data_files, collect_submodules

import sys
import os
for i, x in enumerate(sys.argv):
if x == '--name':
cmdline_name = sys.argv[i+1]
break
else:
raise BaseException('no name')


home = 'C:\\Users\\csulm\\code\\crypto\\electrum-zcl\\'
home = os.getcwd()+'\\'

# see https://github.com/pyinstaller/pyinstaller/issues/2005
hiddenimports = []
Expand Down Expand Up @@ -45,10 +45,10 @@ a = Analysis([home+'electrum',
home+'lib/commands.py',
home+'plugins/cosigner_pool/qt.py',
home+'plugins/email_requests/qt.py',
home+'plugins/trezor/client.py',
home+'plugins/trezor/qt.py',
home+'plugins/keepkey/qt.py',
home+'plugins/ledger/qt.py',
#home+'plugins/trezor/client.py',
#home+'plugins/trezor/qt.py',
#home+'plugins/keepkey/qt.py',
#home+'plugins/ledger/qt.py',
#home+'packages/requests/utils.py'
],
datas=datas,
Expand Down

0 comments on commit 307f411

Please sign in to comment.