guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/08: gnu: conky: Remove redundant MKDIR-P.


From: Tobias Geerinckx-Rice
Subject: 06/08: gnu: conky: Remove redundant MKDIR-P.
Date: Sat, 3 Mar 2018 07:39:49 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit e6d30cf7552502b59c2996b5b1d530c38b88c4f7
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Fri Mar 2 17:38:28 2018 +0100

    gnu: conky: Remove redundant MKDIR-P.
    
    * gnu/packages/conky.scm (conky)[arguments]: Remove redundant MKDIR-P.
---
 gnu/packages/conky.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/conky.scm b/gnu/packages/conky.scm
index 22a0427..0da9f84 100644
--- a/gnu/packages/conky.scm
+++ b/gnu/packages/conky.scm
@@ -60,8 +60,8 @@
              #t))
          (replace 'install
            (lambda* (#:key outputs #:allow-other-keys)
-             (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
-               (mkdir-p bin)
+             (let* ((out (assoc-ref outputs "out"))
+                    (bin (string-append out "/bin")))
                (install-file "src/conky" bin))
              #t)))))
     (inputs



reply via email to

[Prev in Thread] Current Thread [Next in Thread]