blob: 390d7d7d2d0d0b95564cb2c242c8ddad5d5216f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
(.module:
[lux #*
[abstract
[monad (#+ do)]]
[control
["." try (#+ Try)]
[security
["!" capability]]
[concurrency
["." promise (#+ Promise) ("#\." monad)]]]
[data
["." text
["%" format (#+ format)]
["." encoding]]
[format
["." xml]]]
[world
["." file (#+ Path File)]
["." console (#+ Console)]]]
["." // #_
["#." clean]
["/#" // #_
[command (#+ Command)]
["#." action (#+ Action)]
["#." pom]]])
(def: #export (do! console fs profile)
(-> (Console Promise) (file.System Promise) (Command Path))
(do ///action.monad
[pom (promise\wrap (///pom.write profile))
file (: (Promise (Try (File Promise)))
(file.get_file promise.monad fs ///pom.file))
outcome (|> pom
(\ xml.codec encode)
(\ encoding.utf8 encode)
(!.use (\ file over_write)))
_ (console.write_line //clean.success console)]
(wrap ///pom.file)))
|