ExoRepo to load dependencies.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-06-16 10:59:57 -05:00
parent 217ab5dad7
commit 91d721f850
1 changed files with 2 additions and 13 deletions

View File

@ -30,20 +30,9 @@ BaselineOfGrafoscopioUtils >> fossil: spec [
"While more Git independient providers are implemented in Monticello, I will use Iceberg
to download the repository and load it from a local directory"
| location |
location := FileLocator localDirectory / 'iceberg' / 'Offray' / 'Fossil'.
location exists ifFalse: [
(IceRepositoryCreator new
location: location;
remote: (IceGitRemote url: 'https://code.tupale.co/Offray/Fossil.git');
createRepository)
register
].
Metacello new
repository: 'gitlocal://', location fullName;
baseline: 'Fossil';
ExoRepo new
repository: 'https://code.tupale.co/Offray/Fossil/';
load.
spec baseline: 'Fossil' with: [ spec repository: 'gitlocal://', location fullName ]
]
{ #category : #accessing }