guix: lint: Fix comment per TODO.

* guix/lint.scm (check-wrapper-inputs): Address TODO in comment.
This commit is contained in:
Maxim Cournoyer 2021-12-17 15:59:06 -05:00
parent ce362bc1f3
commit 1bd169b5dc
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -571,9 +571,7 @@ (define has-bash-input?
input-names))) input-names)))
(define (check-procedure-body body) (define (check-procedure-body body)
(match body (match body
;; Explicitely setting an interpreter is acceptable, ;; Explicitely setting an interpreter is acceptable.
;; #:sh support is added on 'core-updates'.
;; TODO(core-updates): remove mention of core-updates.
(('wrap-program _ '#:sh . _) '()) (('wrap-program _ '#:sh . _) '())
(('wrap-program _ . _) (('wrap-program _ . _)
(list (report-wrap-program-error package 'wrap-program))) (list (report-wrap-program-error package 'wrap-program)))