Delete temporary mail file.

This commit is contained in:
Mathieu Othacehe 2021-03-21 20:04:09 +01:00
parent ae15aefa55
commit cb1b713e0a
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 1 additions and 2 deletions

View File

@ -43,8 +43,6 @@
;; passed on the standard input to the following file.
(define tmp-mail ".tmp-mail")
(false-if-exception (delete-file tmp-mail))
(define example-spec
(specification
(name "guix")
@ -614,5 +612,6 @@ timestamp, checkouttime, evaltime) VALUES ('guix', 0, 0, 0, 0);")
(test-assert "db-close"
(begin
(false-if-exception (delete-file tmp-mail))
(db-close (%db))
#t)))