Allow gadget config to set up default values for launch configuration
This commit is contained in:
parent
0057094179
commit
25b22d2a9e
1 changed files with 3 additions and 1 deletions
|
|
@ -659,7 +659,9 @@ class DebugSession( object ):
|
|||
def _Launch( self ):
|
||||
self._logger.debug( "LAUNCH!" )
|
||||
adapter_config = self._adapter
|
||||
launch_config = self._configuration[ 'configuration' ]
|
||||
launch_config = {}
|
||||
launch_config.update( self._adapter.get( 'configuration', {} ) )
|
||||
launch_config.update( self._configuration[ 'configuration' ] )
|
||||
|
||||
request = self._configuration.get(
|
||||
'remote-request',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue