File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ BaselineOfPillar >> customProjectAttributes [
132132BaselineOfPillar >> microdown: spec [
133133
134134 " self microdownPreLoad."
135- spec baseline: ' Microdown' with: [ spec repository: ' github://pillar-markup/Microdown:dev /src' ]
135+ spec baseline: ' Microdown' with: [ spec repository: ' github://pillar-markup/Microdown:v2.5.6 /src' ]
136136]
137137
138138{ #category : ' dependencies' }
@@ -143,7 +143,7 @@ BaselineOfPillar >> microdownPreLoad [
143143 packagesToUnload := ((PackageOrganizer default packages
144144 select: [ :each | each name beginsWith: ' Microdown' ]) collect: [ :each | each name ])
145145 reject: [ :each |
146- #('Microdown-RichTextPresenter' 'Microdown-RichTextPresenter-Tests') includes: each ].
146+ #('Microdown-RichTextPresenter' 'Microdown-RichTextPresenter-Tests') includes: each ].
147147 " these two are not managed by the microdown repo but the documentation.
148148 I should rename them in the future to avoid confusion"
149149 packagesToUnload := packagesToUnload asOrderedCollection.
@@ -154,8 +154,13 @@ BaselineOfPillar >> microdownPreLoad [
154154 [ :each |
155155 (mic packageNamed: each) unload ].
156156 mic delete ].
157- Smalltalk globals at: #BaselineOfMicrodown ifPresent: [ :c | c removeFromSystem ]
158-
157+ #( 'Microdown' 'DocumentBrowser' ) do: [ :name |
158+ (IceRepository repositoryNamed: name)
159+ ifNil: [ (' Project not found: ' , name) traceCr ]
160+ ifNotNil: [ :found |
161+ found
162+ unload;
163+ forget ] ].
159164]
160165
161166{ #category : ' dependencies' }
You can’t perform that action at this time.
0 commit comments