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

Max Leske maxleske at gmail.com
Sun May 19 12:51:16 UTC 2013


> 
> 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'.

Max

> 
> should do the trick.
> 
> frank


More information about the Squeak-dev mailing list