Allow gadget config to set up default values for launch configuration

This commit is contained in:
Ben Jackson 2019-11-05 18:34:26 +00:00
commit 25b22d2a9e

View file

@ -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',