Disable Warning

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Disable Warning

Arushi Aggarwal
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.

Thanks,
Arushi

Reply | Threaded
Open this post in threaded view
|

Re: Disable Warning

Hannes Hirzel
I think it is difficult to answer this question unless you post a
screenshot or otherwise give more information.

Hannes

On 4/20/10, Arushi Aggarwal <[hidden email]> 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.
>
> Thanks,
> Arushi
>
>

Reply | Threaded
Open this post in threaded view
|

Re: Disable Warning

Levente Uzonyi-2
In reply to this post by Arushi Aggarwal
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
>
>