[squeak-dev] Disable Warning

Levente Uzonyi leves at elte.hu
Tue Apr 20 22:43:56 UTC 2010


On Tue, 20 Apr 2010, Arushi Aggarwal wrote:

> Hi,
>
> We were trying to load a package through Package Universe. It pops up
> a warning about the package dependencies. Is there anyway to disable
> these from the workspace.

If you're using Installer, you can send #quietly to your Installer 
instance, so it will suppress the warnings:

Installer universe
 	quietly;
 	install: '<insert package name here>'

Otherwise you can suppress them this way:
[ <your install code> ] on: Warning do: [ :ex | ex resume: true ].


Levente

>
> Thanks,
> Arushi
>
>



More information about the Squeak-dev mailing list