aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/package.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-09-12 00:07:08 -0400
committerEduardo Julian2021-09-12 00:07:08 -0400
commitdda05bca0956af5e5b3875c4cc36e61aa04772e4 (patch)
tree0f8b27697d58ab5c8e41aba7c7c9f769d3800767 /stdlib/source/program/aedifex/package.lux
parentd48270f43c404ba19ca04da2553455ecaaf2caba (diff)
Made the "#" character great again!
Diffstat (limited to 'stdlib/source/program/aedifex/package.lux')
-rw-r--r--stdlib/source/program/aedifex/package.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/program/aedifex/package.lux b/stdlib/source/program/aedifex/package.lux
index 923c69cbc..a80ae368d 100644
--- a/stdlib/source/program/aedifex/package.lux
+++ b/stdlib/source/program/aedifex/package.lux
@@ -44,20 +44,20 @@
_
false))]
- [local? #//origin.Local]
- [remote? #//origin.Remote]
+ [local? //origin.#Local]
+ [remote? //origin.#Remote]
)
(def: .public (local pom library)
(-> XML Binary Package)
- [#origin {#//origin.Local ""}
+ [#origin {//origin.#Local ""}
#library [library
- {#//status.Verified (//hash.sha-1 library)
+ {//status.#Verified (//hash.sha-1 library)
(//hash.md5 library)}]
#pom (let [binary_pom (|> pom (\ xml.codec encoded) (\ utf8.codec encoded))]
[pom
binary_pom
- {#//status.Verified (//hash.sha-1 binary_pom)
+ {//status.#Verified (//hash.sha-1 binary_pom)
(//hash.md5 binary_pom)}])])
(def: .public dependencies
@@ -66,7 +66,7 @@
product.left
list
(<xml>.result //pom.parser)
- (try\each (value@ #/.dependencies))))
+ (try\each (value@ /.#dependencies))))
(def: .public repositories
(-> Package (Try (Set Address)))
@@ -74,7 +74,7 @@
product.left
list
(<xml>.result //pom.parser)
- (try\each (value@ #/.repositories))))
+ (try\each (value@ /.#repositories))))
(def: .public equivalence
(Equivalence Package)