style: ‘guix style -f’ warns when passed zero arguments.
* guix/scripts/style.scm (guix-style): When OPTS has ‘whole-file?’ set, warn when FILES is empty. Change-Id: I494f52ef5d070510d20006e6dd987a6805161bb4master
parent
857f501750
commit
c39c89c11e
guix/scripts
|
@ -625,6 +625,8 @@ Update package definitions to the latest style.\n"))
|
|||
opts)))
|
||||
(unless (eq? format-package-definition style)
|
||||
(warning (G_ "'--styling' option has no effect in whole-file mode~%")))
|
||||
(when (null? files)
|
||||
(warning (G_ "no files specified, nothing to do~%")))
|
||||
(for-each format-whole-file files))
|
||||
(let ((packages (filter-map (match-lambda
|
||||
(('argument . spec)
|
||||
|
|
Reference in New Issue