Skip to content

Commit

Permalink
Create preLoading.st
Browse files Browse the repository at this point in the history
  • Loading branch information
akevalion committed May 5, 2023
1 parent 36daf3c commit 0144ad4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions scripts/preLoading.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"Removing Roassal3 :V"

packagesRegExp := { '*Roassal3*' }.

packages := packagesRegExp flatCollect: [ :regExp |
RPackageOrganizer default packages
select: [ :p | regExp match: p packageName ] ].

packages := packages reject: [ :pck | pck name = 'Roassal3-Pharo7' ].
packages do: [ :package | package removeFromSystem ].

0 comments on commit 0144ad4

Please sign in to comment.