----- "Mariano Martinez Peck" <[email protected]> wrote:

| Something like this:
| 
|     #(Metacello-Core Metacello-MC Metacello-Platform .... )
|         do: [ :each | (MCPackage named: each) unload ].
| 

For unloading just Metacello, this gofer script works:

  | gofer |
  gofer := Gofer new.
  MCWorkingCopy allManagers do: [:wc |
    (wc packageName beginsWith: 'Metacello')
      ifTrue: [ gofer package: wc packageName ]].
  gofer unload.

Dale

_______________________________________________
Pharo-project mailing list
[email protected]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Reply via email to