diff --git a/repository/BaselineOfBrea/BaselineOfBrea.class.st b/repository/BaselineOfBrea/BaselineOfBrea.class.st index ca332c9..5335ae2 100644 --- a/repository/BaselineOfBrea/BaselineOfBrea.class.st +++ b/repository/BaselineOfBrea/BaselineOfBrea.class.st @@ -19,7 +19,7 @@ BaselineOfBrea >> baseline: spec [ spec baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ]; baseline: 'Mustache' with: [ spec repository: 'github://noha/mustache/repository' ]; - baseline: 'TaskIt' with: [ spec repository: 'github://pharo-contributions/taskit' ]. + baseline: 'TaskIt' with: [ spec repository: 'github://noha/taskit:add-all-future' ]. "Packages" spec package: 'Brea' with: [ spec requires: #('NeoJSON' 'Mustache' 'TaskIt') ]. diff --git a/repository/Brea/BreaWikiPage.class.st b/repository/Brea/BreaWikiPage.class.st index dfd8aee..2e6471e 100644 --- a/repository/Brea/BreaWikiPage.class.st +++ b/repository/Brea/BreaWikiPage.class.st @@ -54,7 +54,7 @@ BreaWikiPage >> populateBodyAs: key [ | allActions result | allActions := TKTFuture all: { [self bodyContentsAsHTML] future. - [ self templateData at: key put: FileLocator temp / 'wikiPage.html' contents ] + [ self templateData at: key put: FileLocator temp / 'wikiPage.html' contents ] future }. allActions onSuccessDo: [ :values | result := values ].