From ea56597ee7fda95fff14fd0eb6964bfea1dae355 Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Fri, 9 Oct 2020 13:06:59 -0500 Subject: [PATCH] OS specific configurations. --- repository/BaselineOfFossil/BaselineOfFossil.class.st | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/repository/BaselineOfFossil/BaselineOfFossil.class.st b/repository/BaselineOfFossil/BaselineOfFossil.class.st index 5ef1ba9..5bd7741 100644 --- a/repository/BaselineOfFossil/BaselineOfFossil.class.st +++ b/repository/BaselineOfFossil/BaselineOfFossil.class.st @@ -17,11 +17,15 @@ BaselineOfFossil >> baseline: spec [ "Dependencies" spec baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ]; - baseline: 'OSSubprocess' with: [ spec repository: 'github://pharo-contributions/OSSubprocess:master/repository']. - + baseline: 'OSSubprocess' with: [ spec repository: 'github://pharo-contributions/OSSubprocess:master/repository']; + baseline: 'ProcessWrapper' with: [ spec repository: 'github://hernanmd/ProcessWrapper/repository' ]. "Packages" - spec package: 'Fossil' with: [ spec requires: #('NeoJSON' 'OSSubprocess') ]. + spec package: 'Fossil' with: [ spec requires: #('NeoJSON') ]. + spec for: #(#'MacOS' #'Unix') do: [ + spec package: 'Fossil' with: [ spec requires: #('OSSubprocess') ] ]. + spec for: #'Windows' do: [ + spec package: 'Fossil' with: [ spec requires: #('OSSubprocess') ] ]. ]