Fixing definition of local repositories.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-06-18 17:12:32 -05:00
parent 91d721f850
commit 4dd31c6770
1 changed files with 5 additions and 4 deletions

View File

@ -29,10 +29,11 @@ BaselineOfGrafoscopioUtils >> fossil: spec [
"I load the configuration of Fossil using a external Gitea repository."
"While more Git independient providers are implemented in Monticello, I will use Iceberg
to download the repository and load it from a local directory"
ExoRepo new
repository: 'https://code.tupale.co/Offray/Fossil/';
load.
| repo |
repo := ExoRepo new
repository: 'https://code.tupale.co/Offray/Fossil'.
repo load.
spec package: 'Fossil' with: [spec repository: 'gitlocal://', repo local fullName ]
]
{ #category : #accessing }