[squeak-dev] The Trunk: ReleaseBuilder-fbs.93.mcz

Bert Freudenberg bert at freudenbergs.de
Wed Feb 27 14:22:04 UTC 2013


On 2013-02-27, at 12:12, Frank Shearar <frank.shearar at gmail.com> wrote:

> At any rate, this is half of my proposal. I haven't yet actually
> stripped anything out of Trunk, mainly because I'm unsure how. I think
> I need to take a clean, updated image and run a script on it, and at
> the moment don't know what that script looks like. Maybe this?:
> 
> 	(MCWorkingCopy allManagers select:
> 		[:mgr | #('Foo' 'Bar' 'Baz') includes: mgr packageName ])
> 			do: [:wc | wc unload].

Or perhaps

#('Foo' 'Bar' 'Baz') do: [:pkgName | | pkg |
	pkg := MCPackage named: pkgName.
	pkg hasWorkingCopy ifTrue: [pkg unload]].

> 	WorldState addDeferredUIMessage: [ SmalltalkImage current snapshot:
> false andQuit: true ].


No snapshot?

- Bert -




More information about the Squeak-dev mailing list