[squeak-dev] Re: Squeak-dev Digest, Vol 125, Issue 33

Levente Uzonyi leves at elte.hu
Sun May 19 14:02:12 UTC 2013


On Sun, 19 May 2013, Max Leske wrote:

>>
>> On 19 May 2013 10:03, Max Leske <maxleske at gmail.com> wrote:
>>> Hi guys
>>>
>>> I have the following snippet I use to automatically run Fuel tests in Squeak4.1 to 4.4:
>>>
>>> ((Smalltalk at: #Installer) fromUrl: 'http://ss3.gemstone.com/ss/Fuel/')
>>>        install: 'ConfigurationOfFuel-MaxLeske.202.mcz'.
>>> (Smalltalk at: #ConfigurationOfFuel) load
>>>
>>> As you can see I have to hard code the configuration version. Is there a recommended way to install the latest version (like with Gofer)? Or should I simply load Gofer first?
>>
>> (Smalltalk at: #Installer) ss3
>>    project: 'Fuel';
>>    install: 'ConfigurationOfFuel.
>> (Smalltalk at: #ConfigurationOfFuel) load.
>
> Unfortunately, that doesn't work in the old images (4.1). I also tried this in 4.1, which didn't work either:
>
> ((Smalltalk at: #Installer) monticello
> 	http: 'http://ss3.gemstone.com/ss/Fuel/')
>        project: 'Fuel';
>        install: 'ConfigurationOfFuel'.

Because there's no Fuel project there. Try this:

(Smalltalk at: #Installer) monticello
 	http: 'http://ss3.gemstone.com/ss/';
 	project: 'Fuel';
 	install: 'ConfigurationOfFuel'.


Levente

>
> Max
>
>>
>> should do the trick.
>>
>> frank
>
>


More information about the Squeak-dev mailing list