Skip to content

Commit

Permalink
Added buildExecutable argument values distResources and distDirs to C…
Browse files Browse the repository at this point in the history
…onfigFactory (as temp solution).
  • Loading branch information
Anthony Baker authored and Anthony Baker committed Jan 17, 2019
1 parent b427ac3 commit 5d4e608
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion distbuilder/master.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ def __init__( self ) :
self.entryPointPy = None
self.iconFilePath = None
self.version = (0,0,0,0)

self.distResources = []
self.distDirs = []

self.setupName = DEFAULT_SETUP_NAME
self.ifwDefDirPath = None
Expand Down Expand Up @@ -173,7 +176,9 @@ def run( self ):
pyInstConfig = self.configFactory.pyInstallerConfig()
self.onPyInstConfig( pyInstConfig )
_, binPath = buildExecutable( pyInstConfig=pyInstConfig,
opyConfig=opyConfig )
opyConfig=opyConfig,
distResources=self.configFactory.distResources,
distDirs=self.configFactory.distDirs )
if self.isTestingExe :
run( binPath, self.exeTestArgs,
isElevated=self.isElevatedTest, isDebug=True )
Expand Down

0 comments on commit 5d4e608

Please sign in to comment.