guix lint: Remove "guix lint: " prefix from warnings.
This allows editors to parse warnings correctly. * guix/scripts/lint.scm (emit-warning): Use 'format' instead of 'warning', to avoid the "guix lint: " prefix in messages. * tests/lint.scm (call-with-warnings): Indent.
This commit is contained in:
parent
52bd0810a8
commit
b002e9d08e
|
@ -81,7 +81,7 @@ Run a set of checkers on the specified package; if none is specified, run the ch
|
||||||
;; provided MESSAGE.
|
;; provided MESSAGE.
|
||||||
(let ((loc (or (package-field-location package field)
|
(let ((loc (or (package-field-location package field)
|
||||||
(package-location package))))
|
(package-location package))))
|
||||||
(warning (_ "~a: ~a: ~a~%")
|
(format (guix-warning-port) (_ "~a: ~a: ~a~%")
|
||||||
(location->string loc)
|
(location->string loc)
|
||||||
(package-full-name package)
|
(package-full-name package)
|
||||||
message)))
|
message)))
|
||||||
|
|
Loading…
Reference in New Issue