From 889139602b77e4387a6e8bfbedacc2a08703e976 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Fri, 27 Nov 2020 00:07:51 -0400 Subject: Re-named lux/data/format/context to lux/control/parser/environment. --- stdlib/source/program/aedifex.lux | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'stdlib/source/program/aedifex.lux') diff --git a/stdlib/source/program/aedifex.lux b/stdlib/source/program/aedifex.lux index 6f98c7651..bc8f75ee0 100644 --- a/stdlib/source/program/aedifex.lux +++ b/stdlib/source/program/aedifex.lux @@ -43,7 +43,7 @@ ["#." cache] ["#." repository (#+ Address Repository)] ["#." dependency #_ - ["#" resolution]] + ["#" resolution (#+ Resolution)]] ["#." command (#+ Command) ["#/." clean] ["#/." pom] @@ -61,10 +61,10 @@ (list\map (|>> /repository.remote /repository.async)))) (def: (with-dependencies command profile) - (All [a] (-> (Command a) (Command a))) + (All [a] (-> (-> (file.System Promise) Resolution (Command a)) (Command a))) (do /action.monad - [_ (/command/deps.do! (file.async file.default) (..repositories profile) profile)] - (command profile))) + [resolution (/command/deps.do! (file.async file.default) (..repositories profile) profile)] + (command (file.async file.default) resolution profile))) (exception: (cannot-find-repository {repository Text} {options (Dictionary Text Address)}) -- cgit v1.2.3