From 91d721f85048edc297aeb464b515c31890083014 Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Thu, 16 Jun 2022 10:59:57 -0500 Subject: [PATCH] ExoRepo to load dependencies. --- .../BaselineOfGrafoscopioUtils.class.st | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/repository/BaselineOfGrafoscopioUtils/BaselineOfGrafoscopioUtils.class.st b/repository/BaselineOfGrafoscopioUtils/BaselineOfGrafoscopioUtils.class.st index 061a662..76f3cec 100644 --- a/repository/BaselineOfGrafoscopioUtils/BaselineOfGrafoscopioUtils.class.st +++ b/repository/BaselineOfGrafoscopioUtils/BaselineOfGrafoscopioUtils.class.st @@ -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 }