Minor SS3 bug

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

Minor SS3 bug

Frank Shearar-3
Hi Dale,

I'm not entirely sure where I should report SS3 bugs, and since I know
you work on it, you're it :)

The Installer scripts for projects on SS3 aren't quite right. For
instance, this:

(Installer url: 'http://ss3.gemstone.com/ss/')
    project: 'AndreasSystemProfiler';
    install: 'AndreasProfiler'.

fails because InstallerUrl doesn't understand #project:. Handily, the
correct script is simpler:

Installer ss3
    project: 'AndreasSystemProfiler';
    install: 'AndreasProfiler'.

I suspect that these are autogenerated from the contents of a project?

frank

Reply | Threaded
Open this post in threaded view
|

Re: Minor SS3 bug

Tobias Pape
Hi Frank

Am 23.01.2013 um 23:13 schrieb Frank Shearar <[hidden email]>:

> Hi Dale,
>
> I'm not entirely sure where I should report SS3 bugs, and since I know
> you work on it, you're it :)
>
> The Installer scripts for projects on SS3 aren't quite right. For
> instance, this:
>
> (Installer url: 'http://ss3.gemstone.com/ss/')
>    project: 'AndreasSystemProfiler';
>    install: 'AndreasProfiler'.
>
> fails because InstallerUrl doesn't understand #project:. Handily, the
> correct script is simpler:


This problem is know :)
I have already fixed it in the SqueakSource3 code but
it has not yet been deployed on ss3.gemstone.com.

>
> Installer ss3
>    project: 'AndreasSystemProfiler';
>    install: 'AndreasProfiler'.
>
> I suspect that these are autogenerated from the contents of a project?

Yes.

Best
        -Tobias


Reply | Threaded
Open this post in threaded view
|

Re: Minor SS3 bug

Frank Shearar-3
On 24 January 2013 10:50, Tobias Pape <[hidden email]> wrote:

> Hi Frank
>
> Am 23.01.2013 um 23:13 schrieb Frank Shearar <[hidden email]>:
>
>> Hi Dale,
>>
>> I'm not entirely sure where I should report SS3 bugs, and since I know
>> you work on it, you're it :)
>>
>> The Installer scripts for projects on SS3 aren't quite right. For
>> instance, this:
>>
>> (Installer url: 'http://ss3.gemstone.com/ss/')
>>    project: 'AndreasSystemProfiler';
>>    install: 'AndreasProfiler'.
>>
>> fails because InstallerUrl doesn't understand #project:. Handily, the
>> correct script is simpler:
>
>
> This problem is know :)
> I have already fixed it in the SqueakSource3 code but
> it has not yet been deployed on ss3.gemstone.com.

Ah, thanks Tobias!

frank