Output member file to nick.misc in web output.

This commit is contained in:
Dominik Pantůček 2023-04-01 17:45:56 +02:00
parent 76ff48329a
commit b3bb37cbce
3 changed files with 12 additions and 1 deletions

View file

@ -47,6 +47,12 @@
(with-output-to-file (sprintf "~A.balance" nick)
(lambda ()
(print (member-total-balance mr))))
(with-output-to-file (sprintf "~A.misc" nick)
(lambda ()
(let loop ((lines (member-source mr)))
(when (not (null? lines))
(print (car lines))
(loop (cdr lines))))))
))
)