#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Wed, 09 May 2018 09:58:25 +0200
changeset 1046 2c62588b53ed
parent 1045 fcd46e7eb37f
child 1047 71460ee79b0f
#BUGFIX by cg class: MCRepositoryGroup changed: #initializeRepositoriesFromUserSettings oops
MCRepositoryGroup.st
--- a/MCRepositoryGroup.st	Tue May 08 19:59:39 2018 +0200
+++ b/MCRepositoryGroup.st	Wed May 09 09:58:25 2018 +0200
@@ -88,11 +88,11 @@
 
     ((dir := Filename downloadsDirectory) notNil and:[dir exists]) ifTrue:[
         rep := MCDirectoryRepository directory:dir pathName.
-        self addRepository:rep
+        repositories add:rep
     ].
     ((dir := Smalltalk packageDirectoryForPackageId:'stx:goodies/monticello_packages') notNil and:[dir exists]) ifTrue:[
         rep := MCDirectoryRepository directory:dir pathName.
-        self addRepository:rep
+        repositories add:rep
     ].
 
     "Created: / 04-12-2011 / 09:06:53 / cg"