Update baseline to include all packages

This commit is contained in:
2022-06-11 11:19:33 +02:00
parent 1db1b01b2a
commit acded68da5
2 changed files with 18 additions and 15 deletions

View File

@@ -67,16 +67,17 @@ CarpProcess >> isRunning [
ifNotNil: [ process isRunning ]
]
{ #category : #accessing }
CarpProcess >> newProcess| newProcess [ |
{ #category : #'start-stop' }
CarpProcess >> newProcess [
| newProcess |
newProcess := GtSubprocessWithInMemoryOutput new
command: self serverPath fullName;
arguments: self processArguments;
workingDirectory: self workingDirectory resolve fullName;
terminateOnShutdown;
yourself.
environmentVariables associationsDo: [ :assoc |
newProcess environmentAt: assoc key put: assoc value ].
command: self serverPath fullName;
arguments: self processArguments;
workingDirectory: self workingDirectory resolve fullName;
terminateOnShutdown;
yourself.
environmentVariables
associationsDo: [ :assoc | newProcess environmentAt: assoc key put: assoc value ].
^ newProcess
]