summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-12-17 15:59:06 -0500
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2022-01-10 11:44:31 -0500
commit1bd169b5dc818edd7630e919033ba1b8303d9be0 (patch)
treee7adc5ca3c91d5d70969e03681892db20d526563 /guix
parentce362bc1f35102e7d79ad7e0d638d20cef304f01 (diff)
downloadguix-patches-1bd169b5dc818edd7630e919033ba1b8303d9be0.tar
guix-patches-1bd169b5dc818edd7630e919033ba1b8303d9be0.tar.gz
guix: lint: Fix comment per TODO.
* guix/lint.scm (check-wrapper-inputs): Address TODO in comment.
Diffstat (limited to 'guix')
-rw-r--r--guix/lint.scm4
1 files changed, 1 insertions, 3 deletions
diff --git a/guix/lint.scm b/guix/lint.scm
index 379bd0e80b..3ca7a0b608 100644
--- a/guix/lint.scm
+++ b/guix/lint.scm
@@ -571,9 +571,7 @@ or \"bash-minimal\" is not in its inputs. 'wrap-script' is not supported."
input-names)))
(define (check-procedure-body body)
(match body
- ;; Explicitely setting an interpreter is acceptable,
- ;; #:sh support is added on 'core-updates'.
- ;; TODO(core-updates): remove mention of core-updates.
+ ;; Explicitely setting an interpreter is acceptable.
(('wrap-program _ '#:sh . _) '())
(('wrap-program _ . _)
(list (report-wrap-program-error package 'wrap-program)))