Update baseline to include all packages
This commit is contained in:
@@ -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') ] ]
|
||||||
]
|
]
|
||||||
|
@@ -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
|
||||||
]
|
]
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user