services: admin: Allow non-string values for setenv assoc-list entries

pull/1/head
Luis Guilherme Coelho 2023-11-28 09:05:15 -03:00
parent e853d05dc1
commit 1b3c063c32
No known key found for this signature in database
GPG Key ID: 1F2E76ACE3F531C8
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@
(map (match-lambda
((var . #t) var)
((var . #f) (string-append "-" var))
((var . value) (string-append var "=" value)))
((var . value) (format #f "~a=~a" var value)))
val))
(define-maybe list-of-strings)
(define-maybe assoc-list)