diff options
author | Eduardo Julian | 2020-10-15 01:01:21 -0400 |
---|---|---|
committer | Eduardo Julian | 2020-10-15 01:01:21 -0400 |
commit | c006a5fe8e82f6fc7c8cdb9db0f44c06d229f34e (patch) | |
tree | f00af06ceb7cd77ab53aa214abb2e7383dc87500 /stdlib/source/program/aedifex/command | |
parent | 440608bc32916329c9f3c0f2bd9a8d1152ed5da8 (diff) |
Re-named "to-text" functions to "format".
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/program/aedifex/command/deploy.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/program/aedifex/command/deploy.lux b/stdlib/source/program/aedifex/command/deploy.lux index a4b076733..b63aa2972 100644 --- a/stdlib/source/program/aedifex/command/deploy.lux +++ b/stdlib/source/program/aedifex/command/deploy.lux @@ -69,6 +69,6 @@ pom (promise@wrap (///pom.project profile)) _ (deploy! ///artifact/type.pom (|> pom (:: xml.codec encode) encoding.to-utf8)) _ (deploy! ///artifact/type.lux-library library) - _ (deploy! "sha1" (///hash.sha1 library)) - _ (deploy! "md5" (///hash.md5 library))] + _ (deploy! "sha1" (///hash.data (///hash.sha1 library))) + _ (deploy! "md5" (///hash.data (///hash.md5 library)))] (wrap []))))) |