Skip to content

Commit d0b9c62

Browse files
committed
Using Microdown v2.5.6
1 parent 394a149 commit d0b9c62

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

src/BaselineOfPillar/BaselineOfPillar.class.st

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ BaselineOfPillar >> customProjectAttributes [
132132
BaselineOfPillar >> 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' }

0 commit comments

Comments
 (0)