diff options
author | Chloe Brown <chloe.brown.00@outlook.com> | 2022-08-01 14:22:23 +0100 |
---|---|---|
committer | Chloe Brown <chloe.brown.00@outlook.com> | 2022-08-01 14:22:23 +0100 |
commit | 3d00f0e3d03d13dde25e8c476510c9acfef2e341 (patch) | |
tree | c18fd2f14e13db6765dbd4c88e77701bec53147e | |
parent | cb0a492805d0a0be6f0b7ee2a445922a0e1322ef (diff) |
exim: fix minor typo.
-rw-r--r-- | yellowsquid/packages/mail.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yellowsquid/packages/mail.scm b/yellowsquid/packages/mail.scm index a5c468f..abd03e4 100644 --- a/yellowsquid/packages/mail.scm +++ b/yellowsquid/packages/mail.scm @@ -22,7 +22,7 @@ (("# (TRANSPORT_LMTP=yes)" all line) line))))) (add-after 'install 'install-config (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outpus "out"))) + (let ((out (assoc-ref outputs "out"))) (mkdir-p (string-append out "/etc")) (copy-file "src/configure.default" (string-append out "/etc/exim.conf")) (substitute* (string-append out "/etc/exim.conf") |