diff options
author | Ludovic Courtès <ludo@gnu.org> | 2024-06-13 11:34:33 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-06-13 11:34:33 +0200 |
commit | 086fe7ef25856a53f3d21732ea76498fc94c27a7 (patch) | |
tree | ed2b6289b713887a9f173470ca675673a57470c0 /doc/guix.texi | |
parent | 8240d1acf4f204ef0980839ee1e8921119b4d4aa (diff) | |
download | guix-086fe7ef25856a53f3d21732ea76498fc94c27a7.tar.gz |
doc: Use a symbol for Cuirass specification names.
* doc/guix.texi (Continuous Integration): Change ‘name’ field of ‘specification’ to be a symbol, as written in upstream Cuirass doc. Change-Id: I0a8cddfb8ab47f627a01459393aaf346028bb3f6
Diffstat (limited to 'doc/guix.texi')
-rw-r--r-- | doc/guix.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index ee7b0a58a4..68c75f1416 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -34532,7 +34532,7 @@ the packages provided by the @code{my-channel} channel. @lisp (define %cuirass-specs #~(list (specification - (name "my-channel") + (name 'my-channel) (build '(channels my-channel)) (channels (cons (channel @@ -34551,7 +34551,7 @@ channel, one can use the following configuration. @lisp (define %cuirass-specs #~(list (specification - (name "my-linux") + (name 'my-linux) (build '(packages "linux-libre"))))) (service cuirass-service-type |