Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Ducasse committed Feb 4, 2024
1 parent 2ff11b5 commit 1ae789b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Expand Up @@ -155,6 +155,21 @@ The current pillar version is being developped using [Pharo11](www.pharo.org).
To contribute, the easiest way to to follow the previous scripts and send PullRequests.
Use the latest dev-8 as a root for your changes.
### Cleaning first
First remove existing packages from the Pharo distribution.
```
IceRepository registry
detect: [ :each | #('Microdown' 'NewTools-DocumentationReader') includes: each name ]
ifFound: [ :aRepository | aRepository forget ].
"This, however, needs to stay :)"
#( 'BeautifulComments' 'BaselineOfBeautifulComments' 'BaselineOfMicrodownDev' 'BaselineOfMicrodown' 'Microdown' 'Microdown-Tests' 'Microdown-MicrodownRichTextComposer' 'Microdown-ResolvePath'
'Microdown-ResolvePath-Tests' 'NewTools-DocumentationReader-Tests' 'BaselineOfNewToolsDocumentationReader' 'Microdown-RichTextComposer' 'Microdown-RichTextPresenter' 'Microdown-RichTextPresenter-Tests' 'Spec2-Microdown'
'NewTools-DocumentationReader') do: [ :each |
(RPackageOrganizer default packageNamed: each ifAbsent: [ nil ])
ifNotNil: [ :aPackage | aPackage removeFromSystem ] ]
```
The following script can be useful if you develop usin the launcher and want to try to execute the image as from a pillar command
```
Expand Down

0 comments on commit 1ae789b

Please sign in to comment.