aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/metadata.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/program/aedifex/metadata.lux')
-rw-r--r--stdlib/source/program/aedifex/metadata.lux32
1 files changed, 16 insertions, 16 deletions
diff --git a/stdlib/source/program/aedifex/metadata.lux b/stdlib/source/program/aedifex/metadata.lux
index a191a74dd..097aedac8 100644
--- a/stdlib/source/program/aedifex/metadata.lux
+++ b/stdlib/source/program/aedifex/metadata.lux
@@ -1,15 +1,15 @@
(.using
- [library
- [lux "*"
- [data
- ["[0]" text
- ["%" format {"+" format}]]]
- [world
- [file {"+" Path}]
- [net
- ["[0]" uri {"+" URI}]]]]]
- ["[0]" // "_"
- ["[1][0]" artifact {"+" Artifact}]])
+ [library
+ [lux "*"
+ [data
+ ["[0]" text
+ ["%" format {"+" format}]]]
+ [world
+ [file {"+" Path}]
+ [net
+ ["[0]" uri {"+" URI}]]]]]
+ ["[0]" // "_"
+ ["[1][0]" artifact {"+" Artifact}]])
(def: remote_file
Path
@@ -18,16 +18,16 @@
(def: .public (remote_artifact_uri artifact)
(-> Artifact URI)
(let [/ uri.separator]
- (format (//artifact.directory / (value@ //artifact.#group artifact))
- / (value@ //artifact.#name artifact)
- / (value@ //artifact.#version artifact)
+ (format (//artifact.directory / (the //artifact.#group artifact))
+ / (the //artifact.#name artifact)
+ / (the //artifact.#version artifact)
/ ..remote_file)))
(def: .public (remote_project_uri artifact)
(-> Artifact URI)
(let [/ uri.separator]
- (format (//artifact.directory / (value@ //artifact.#group artifact))
- / (value@ //artifact.#name artifact)
+ (format (//artifact.directory / (the //artifact.#group artifact))
+ / (the //artifact.#name artifact)
/ ..remote_file)))
(def: local_file