[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: wgetpaste: Return #t from all phases.
From: |
guix-commits |
Subject: |
02/03: gnu: wgetpaste: Return #t from all phases. |
Date: |
Sat, 4 May 2019 18:11:38 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 4d3990c9f38fd66037a2682367a8e36617ed5099
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Sat May 4 23:53:46 2019 +0200
gnu: wgetpaste: Return #t from all phases.
* gnu/packages/wget.scm (wgetpaste)[arguments]: Return #t from ‘install’
phase.
---
gnu/packages/wget.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/wget.scm b/gnu/packages/wget.scm
index 4f8671a..b503b6f 100644
--- a/gnu/packages/wget.scm
+++ b/gnu/packages/wget.scm
@@ -3,7 +3,7 @@
;;; Copyright © 2014, 2015, 2017, 2018 Ludovic Courtès <address@hidden>
;;; Copyright © 2016, 2017, 2019 Efraim Flashner <address@hidden>
;;; Copyright © 2017 Rutger Helling <address@hidden>
-;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
+;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -106,7 +106,8 @@ in downloaded documents to relative links.")
(bin (string-append out "/bin"))
(zsh (string-append out "/share/zsh/site-functions")))
(install-file "wgetpaste" bin)
- (install-file "_wgetpaste" zsh)))))
+ (install-file "_wgetpaste" zsh)
+ #t))))
#:tests? #f)) ; no test target
(inputs
`(("wget" ,wget)))