diff options
author | Wojtek Kosior <koszko@koszko.org> | 2024-01-24 17:47:06 +0100 |
---|---|---|
committer | W. Kosior <koszko@koszko.org> | 2025-02-06 16:38:32 +0100 |
commit | 94e51ae1094d8b07f20a8a9adb4d53176bf8711a (patch) | |
tree | b78aafc1e4603bc381bdb9ba44adda05feab0dac | |
parent | a3b1d133c820926cf625740dcc04214ea5ee4913 (diff) | |
download | guix-94e51ae1094d8b07f20a8a9adb4d53176bf8711a.tar.gz guix-94e51ae1094d8b07f20a8a9adb4d53176bf8711a.zip |
services: Allow cgit footer text to be passed as a file-like object.
* gnu/services/cgit.scm (cgit-configuration)[footer]: Specify type as
`file-object`.
Change-Id: Id5790bbdb5e09204b653bc54e1b9b60afe5a2ee0
-rw-r--r-- | gnu/services/cgit.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/cgit.scm b/gnu/services/cgit.scm index 1ef5547ee5..b8f4f23ec4 100644 --- a/gnu/services/cgit.scm +++ b/gnu/services/cgit.scm @@ -465,7 +465,7 @@ set any repo specific settings.") (file-object "/favicon.ico") "URL used as link to a shortcut icon for cgit.") (footer - (string "") + (file-object "") "The content of the file specified with this option will be included verbatim at the bottom of all pages (i.e. it replaces the standard \"generated by...\" message).") |