aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/command/install.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/program/aedifex/command/install.lux')
-rw-r--r--stdlib/source/program/aedifex/command/install.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/program/aedifex/command/install.lux b/stdlib/source/program/aedifex/command/install.lux
index 65575f63f..4b413faa5 100644
--- a/stdlib/source/program/aedifex/command/install.lux
+++ b/stdlib/source/program/aedifex/command/install.lux
@@ -51,11 +51,11 @@
(def: .public (do! console fs repository profile)
(-> (Console Async) (file.System Async) (Repository Async) (Command Any))
- (case (value@ #/.identity profile)
- {#.Some identity}
+ (case (value@ /.#identity profile)
+ {.#Some identity}
(do ///action.monad
[package (|> profile
- (value@ #/.sources)
+ (value@ /.#sources)
set.list
(export.library fs))
pom (|> profile
@@ -66,10 +66,10 @@
(let [pom_data (|> pom
(\ xml.codec encoded)
(\ utf8.codec encoded))]
- [#///package.origin {#///origin.Local ""}
- #///package.library (let [library (binary.result tar.writer package)]
+ [///package.#origin {///origin.#Local ""}
+ ///package.#library (let [library (binary.result tar.writer package)]
[library (///dependency/status.verified library)])
- #///package.pom [pom
+ ///package.#pom [pom
pom_data
(///dependency/status.verified pom_data)]]))]
(console.write_line ..success console))