From bb78aceda12be5edafefaa62f70ff6e95f21bde8 Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Sun, 26 Jul 2020 11:57:42 -0500 Subject: [PATCH] Adding OSSubprocess dependency. --- repository/BaselineOfFossil/BaselineOfFossil.class.st | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/repository/BaselineOfFossil/BaselineOfFossil.class.st b/repository/BaselineOfFossil/BaselineOfFossil.class.st index 85f1995..5ef1ba9 100644 --- a/repository/BaselineOfFossil/BaselineOfFossil.class.st +++ b/repository/BaselineOfFossil/BaselineOfFossil.class.st @@ -16,12 +16,12 @@ BaselineOfFossil >> baseline: spec [ do: [ "Dependencies" spec - baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ]"; - baseline: 'OSSubprocess' with: [ spec repository: 'github://pharo-contributions/OSSubprocess:master/repository']". + baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ]; + baseline: 'OSSubprocess' with: [ spec repository: 'github://pharo-contributions/OSSubprocess:master/repository']. "Packages" - spec package: 'Fossil' with: [ spec requires: #('NeoJSON') ]. + spec package: 'Fossil' with: [ spec requires: #('NeoJSON' 'OSSubprocess') ]. ]