diff options
author | Wojtek Kosior <koszko@koszko.org> | 2024-01-24 17:47:06 +0100 |
---|---|---|
committer | W. Kosior <koszko@koszko.org> | 2024-09-04 21:02:05 +0200 |
commit | 147a942a53addb94eaaecdc7535b8d0ee8bbd563 (patch) | |
tree | 5299b5dfdab1b2fda9d073ac22d88118725f69f4 /gnu/services | |
parent | b62085afc4d6a35225bd177fd479ae1486423e1a (diff) | |
download | guix-147a942a53addb94eaaecdc7535b8d0ee8bbd563.tar.gz guix-147a942a53addb94eaaecdc7535b8d0ee8bbd563.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
Diffstat (limited to 'gnu/services')
-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).") |