up vote 1 down vote favorite
share [g+] share [fb]

I am looking for the 'svn update' of the Monticello version control system. I use the browser to search for new mcz packages, but I want to be able to do it with a script.

link|improve this question
Installer worked, but got some deprecation warnings while loading it in Pharo. – soemirno Feb 21 '09 at 17:41
feedback

2 Answers

up vote 3 down vote accepted

I think, that most easiest way will be to use Installer. If its not included in your image, do this first:

HTTPSocket httpFileIn: 'installer.pbwiki.com/f/LPF.st'.

this script will install a so-called Level Playing Field (read more here: http://installer.pbwiki.com/LevelPlayingField)

next step is quite simple:

Installer monticello http: 'http://www.squeaksource.com'; project: 'Seaside'; install: 'Seaside-core'

you can look at usage examples here: http://installer.pbwiki.com/Installer

link|improve this answer
thanks Igor, I will give it a try. – soemirno Feb 21 '09 at 15:49
feedback

The step:

Installer monticello http: 'http://www.squeaksource.com'; project: 'Seaside'; install: 'Seaside-core'

can be abbreviated to:

Installer ss project: 'Seaside29'; install: 'Seaside-Core'.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.