[Glass] gsDevKitHome installServer error

Dale Henrichs via Glass glass at lists.gemtalksystems.com
Wed Sep 30 09:34:43 PDT 2015


Dario,

Okay I've taken a second look at the log that you provided and I see 
that the script is downloadinghttp://get.pharo.org/stable:

   Creating starter scripts pharo and pharo-ui
    --2015-09-29 11:48:23--  http://get.pharo.org/stable

and when I look at the current version of the installPharo script[1] the 
code should be downloading vmlatest and 3.0, not stable, so I assume 
that you are using an older version of gsDevKitHome and in the last 
version on the master branch, there is a commit [3] for Issue #66[2] 
that specifically changes from downloading stable:

-if [ "${GS_TRAVIS}x" = "x" ] ; then
-  wget -O- get.pharo.org/vmLatest | bash
-else
-  # running on travis server
-  wget -O- get.pharo.org/travis+vmLatest | bash
-fi
-wget -O- get.pharo.org/stable | bash
+ wget -O- get.pharo.org/vmLatest | bash
+wget -O- get.pharo.org/30 | bash

So at a minimum you should patch your copy of $GS_HOME/bin/installPharo  
with the above changes. At best you should update to use the latest 
commit on the master branch:

   cd $GS_HOME
   git status                                # record the branch you are 
currently on
   git checkout -b merge_latest #create temp branch as target of pull
   git pull origin master             # deal with conflicts if any and 
commit if necessary
   git checkout <branch-name>
   git merge merge_latest
   git branch -d merge_latest    # delete the temp branch

and then you should be able to get going from there ...

Dale

[1] https://github.com/GsDevKit/gsDevKitHome/blob/master/bin/installPharo
[2] https://github.com/GsDevKit/gsDevKitHome/issues/66
[3] 
https://github.com/GsDevKit/gsDevKitHome/commit/95a30646b082d1965fc15addc77badd93c9d1f74


On 09/30/2015 03:35 AM, Trussardi Dario Romano via Glass wrote:
> Ciao,
>
>
>> Dario,
>>
>> Thanks for the detailed log ... hmmm it looks like you are ending up downloading Pharo4.0 and the ConfigurationOfTodeClient doesn't work with Pharo4.0 ... I am curious as to how that happened ... the installPharo script on the dev branch of gsDevKitHome is hard-wired to download Phare3.0 ...
>>
>> Dale
> 	But what i can do to complete the  	installServer devkit 3.1.0.6
>
> 	After the error the script is end and didn't complete the installation.
>
> 	Thanks for any considerations,
>
> 		Dario
> _______________________________________________
> Glass mailing list
> Glass at lists.gemtalksystems.com
> http://lists.gemtalksystems.com/mailman/listinfo/glass



More information about the Glass mailing list