Update baseline to include all packages
This commit is contained in:
@@ -6,11 +6,13 @@ Class {
|
||||
|
||||
{ #category : #baseline }
|
||||
BaselineOfCarp >> baseline: spec [
|
||||
|
||||
<baseline>
|
||||
spec for: #common do: [
|
||||
spec
|
||||
baseline: 'GToolkit4SmaCC'
|
||||
with: [ spec repository: 'github://feenkcom/gt4smacc:main/src' ].
|
||||
spec package: 'Carp' with: [ spec requires: #( 'GToolkit4SmaCC' ) ] ]
|
||||
spec
|
||||
for: #common
|
||||
do: [ spec
|
||||
baseline: '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') ] ]
|
||||
]
|
||||
|
@@ -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
|
||||
]
|
||||
|
||||
|
Reference in New Issue
Block a user