We are loading some code using Iceberg API in pharo6.1. That works fine,
the problem we have is that when I open Iceberg browser no repo is shown
up. Maybe you can help me find what we are doing wrong. We first update
iceberg, then load our repo, code is below.

Cheers,
Pocho.

----

Author useAuthor: 'LoadSqueakNOS' during: [
"First update Iceberg"

MetacelloPharoPlatform select.
#(
'BaselineOfTonel'
'BaselineOfLibGit'
'BaselineOfIceberg'
'Iceberg-UI'
'Iceberg-Plugin-GitHub'
'Iceberg-Plugin'
'Iceberg-Metacello-Integration'
'Iceberg-Libgit-Tonel'
'Iceberg-Libgit-Filetree'
'Iceberg-Libgit'
'Iceberg'
'Iceberg-Pharo6'
'LibGit-Core'
'MonticelloTonel-Tests'
'MonticelloTonel-Core'
'MonticelloTonel-FileSystem' )
do: [ :each | (each asPackageIfAbsent: [ nil ]) ifNotNil: #removeFromSystem
].

Metacello new
  baseline: 'Iceberg';
  repository: 'github://pharo-vcs/iceberg:v0.6.8';
  load.
]

"Based on the same file from the pharo-vm project"

myRepository := IceRepositoryCreator new
url: '[email protected]:nopsys/CogNOS.git';
subdirectory: 'Image-src';
createRepository.
    (myRepository addPackageNamed: 'SqueakNOS') loadLatest.


-- 
Javier Pimás
Ciudad de Buenos Aires

Reply via email to