aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex.lux
diff options
context:
space:
mode:
authorEduardo Julian2020-11-27 00:07:51 -0400
committerEduardo Julian2020-11-27 00:07:51 -0400
commit889139602b77e4387a6e8bfbedacc2a08703e976 (patch)
tree3a113e298037122e81b5529475bd1e59286f733f /stdlib/source/program/aedifex.lux
parentdbb658bd7976c073a2bf314f194b36b30c45784b (diff)
Re-named lux/data/format/context to lux/control/parser/environment.
Diffstat (limited to 'stdlib/source/program/aedifex.lux')
-rw-r--r--stdlib/source/program/aedifex.lux8
1 files changed, 4 insertions, 4 deletions
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)})