diff options
author | Eduardo Julian | 2022-03-15 22:45:49 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-03-15 22:45:49 -0400 |
commit | b0093a3849baaeb5e12692b2cf6ac65ba74bbd54 (patch) | |
tree | 26db4a468c2f75c64ba16e8b7dbf20f135d369fc /stdlib/source/program/aedifex/dependency | |
parent | bc36487224f670c23002cc4575c0dba3e5dc1be1 (diff) |
Leaner syntax for library/lux/control/exception.report
Diffstat (limited to 'stdlib/source/program/aedifex/dependency')
-rw-r--r-- | stdlib/source/program/aedifex/dependency/resolution.lux | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/program/aedifex/dependency/resolution.lux b/stdlib/source/program/aedifex/dependency/resolution.lux index 2100c1ca1..67dbfc37c 100644 --- a/stdlib/source/program/aedifex/dependency/resolution.lux +++ b/stdlib/source/program/aedifex/dependency/resolution.lux @@ -63,9 +63,9 @@ extension Extension hash Text]) (exception.report - ["Artifact" (///artifact.format artifact)] - ["Extension" (%.text extension)] - ["Hash" (%.text hash)]))] + "Artifact" (///artifact.format artifact) + "Extension" (%.text extension) + "Hash" (%.text hash)))] [sha-1_does_not_match] [md5_does_not_match] @@ -157,8 +157,8 @@ (exception: .public (cannot_resolve [dependency Dependency]) (exception.report - ["Artifact" (%.text (///artifact.format (the //.#artifact dependency)))] - ["Type" (%.text (the //.#type dependency))])) + "Artifact" (%.text (///artifact.format (the //.#artifact dependency))) + "Type" (%.text (the //.#type dependency)))) (template [<sigil> <name> <doing> <at>] [(def: (<name> console repository artifact) |