[squeak-dev] Installer bug?

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

[squeak-dev] Installer bug?

Igor Stasenko
Hello, i'm trying to create new install script for Gjallar on 3.10

I found, that with latest Installer version a commands like:

Installer websqueakmap
        install: 'Shout';
        install: 'DynamicBindings'.

not working.

In method #addPackage:  it assumes that packages are OrderedCollection.
But after first #install: , installer replacing it with Dictionary
instead, so at next #install: it throws an error.

I am missing something? Is given cascade sends still supported by
installer, or i should write it differently?

--
Best regards,
Igor Stasenko AKA sig.

Reply | Threaded
Open this post in threaded view
|

[squeak-dev] Re: Installer bug?

Igor Stasenko
Ok, here is fix.

It changing the #wsmPackageByName method to use temp var, instead of
packages ivar, which seems was wrong, because packages ivar used as a
collection of packages to be installed, not a dictionary of all known
squeakmap packages.


--
Best regards,
Igor Stasenko AKA sig.



Installer-wsmPackagesByName.st (624 bytes) Download Attachment