aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-06-27 09:49:39 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-06-27 13:26:21 -0700
commitbc6d78724561a7a4c0162ff0de7afaa1e656621c (patch)
treecef9b12565b2134c8be655cff3c37048fb62b21e
parentd9956e8f094c9e1b1c38f0d25792f7ded11f879b (diff)
downloadconsfigurator-bc6d78724561a7a4c0162ff0de7afaa1e656621c.tar.gz
APT:PINNED: fix quotation in example
Reported-by: David Bremner <david@tethera.net> Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
-rw-r--r--src/property/apt.lisp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/property/apt.lisp b/src/property/apt.lisp
index 8d06892..d73dbdb 100644
--- a/src/property/apt.lisp
+++ b/src/property/apt.lisp
@@ -367,11 +367,11 @@ release of Debian from testing, falling back to sid if they're not available
in testing, you could use:
(os:debian-stable \"bullseye\" :amd64)
- (apt:suites-available-pinned (os:debian-testing) -10
- (os:debian-unstable) -10)
+ (apt:suites-available-pinned '(os:debian-testing) -10
+ '(os:debian-unstable) -10)
(apt:pinned '(\"elpa-*\")
- (os:debian-testing) 100
- (os:debian-unstable) 50)"
+ '(os:debian-testing) 100
+ '(os:debian-unstable) 50)"
(:desc (loop for (os pin) on pairs by #'cddr
for suite = (os:debian-suite (suite-specifier-to-os os))
collect #?{Debian "${suite}", priority ${pin}} into accum