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

@@ -6,11 +6,13 @@ Class {
{ #category : #baseline } { #category : #baseline }
BaselineOfCarp >> baseline: spec [ BaselineOfCarp >> baseline: spec [
<baseline> <baseline>
spec for: #common do: [ spec
spec for: #common
baseline: 'GToolkit4SmaCC' do: [ spec
with: [ spec repository: 'github://feenkcom/gt4smacc:main/src' ]. baseline: 'GToolkit4SmaCC'
spec package: 'Carp' with: [ spec requires: #( 'GToolkit4SmaCC' ) ] ] with: [ spec repository: 'github://feenkcom/gt4smacc:main/src' ].
spec package: 'Carp' with: [ spec requires: #('GToolkit4SmaCC') ].
spec package: 'Carp-Parser' with: [ spec requires: #('GToolkit4SmaCC') ].
spec package: 'Carp-AST' with: [ spec requires: #('GToolkit4SmaCC') ] ]
] ]

View File

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