[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/18: home: xdg: Use a single @ instead of @@.
From: |
guix-commits |
Subject: |
02/18: home: xdg: Use a single @ instead of @@. |
Date: |
Fri, 5 Aug 2022 09:28:54 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit a80edc0d82c104d22607da5c44225d9105c3e1cf
Author: Andrew Tropin <andrew@trop.in>
AuthorDate: Thu Jul 21 15:24:32 2022 +0300
home: xdg: Use a single @ instead of @@.
* gnu/home/services/xdg.scm (ensure-xdg-base-dirs-on-activation,
home-xdg-user-directories-files-service): Use single @ intsead of @@.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/home/services/xdg.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/home/services/xdg.scm b/gnu/home/services/xdg.scm
index 71c028c788..04cf9d0aed 100644
--- a/gnu/home/services/xdg.scm
+++ b/gnu/home/services/xdg.scm
@@ -23,6 +23,7 @@
#:use-module (gnu packages freedesktop)
#:use-module (gnu home services utils)
#:use-module (guix gexp)
+ #:use-module (guix modules)
#:use-module (guix records)
#:use-module (guix i18n)
#:use-module (guix diagnostics)
@@ -106,7 +107,7 @@ services more consistent."))
(define (ensure-xdg-base-dirs-on-activation config)
#~(map (lambda (xdg-base-dir-variable)
- ((@@ (guix build utils) mkdir-p)
+ ((@ (guix build utils) mkdir-p)
(getenv
xdg-base-dir-variable)))
'#$(map (lambda (field)
@@ -207,8 +208,8 @@ pre-populated content.")
home-xdg-user-directories-configuration-fields)))
#~(let ((ensure-dir
(lambda (path)
- (mkdir-p
- ((@@ (ice-9 string-fun) string-replace-substring)
+ ((@ (guix build utils) mkdir-p)
+ ((@ (ice-9 string-fun) string-replace-substring)
path "$HOME" (getenv "HOME"))))))
(display "Creating XDG user directories...")
(map ensure-dir '#$dirs)
- branch master updated (bd956bc57b -> d11a432adf), guix-commits, 2022/08/05
- 03/18: home: xdg: Skip mkdir XDG_RUNTIME_DIR in activation script., guix-commits, 2022/08/05
- 05/18: tests: Make tests inside container reproducible., guix-commits, 2022/08/05
- 07/18: gnu: gnome-shell-extension-appindicator: Update to 42., guix-commits, 2022/08/05
- 08/18: gnu: Add texlive-abstract., guix-commits, 2022/08/05
- 09/18: gnu: Add texlive-breqn., guix-commits, 2022/08/05
- 11/18: gnu: Add texlive-datatool., guix-commits, 2022/08/05
- 13/18: gnu: Add texlive-sourcesanspro., guix-commits, 2022/08/05
- 02/18: home: xdg: Use a single @ instead of @@.,
guix-commits <=
- 04/18: home: Use warning instead of display., guix-commits, 2022/08/05
- 01/18: disarchive-manifest: Filter out origins without a hash., guix-commits, 2022/08/05
- 10/18: gnu: Add texlive-comment., guix-commits, 2022/08/05
- 12/18: gnu: Add texlive-physics., guix-commits, 2022/08/05
- 16/18: gnu: mumps: Update to 5.5.1, guix-commits, 2022/08/05
- 06/18: gnu: openssl: Keep .dll.a files in main output., guix-commits, 2022/08/05
- 17/18: gnu: mumps: Add alternate source code URL., guix-commits, 2022/08/05
- 18/18: guix system: Remove unused 'read-operating-system' procedure., guix-commits, 2022/08/05
- 15/18: gnu: Add texlive-sourcecodepro., guix-commits, 2022/08/05
- 14/18: gnu: Add texlive-sourceserifpro., guix-commits, 2022/08/05