mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
guix import: Add a blank line after each package definition.
Starting from commit 371a83b764
, 'guix
import crate -r' (or similar) would no longer print a blank line in
between definitions. This patch fixes it.
Reported by jgart <jgart@dismail.de>.
* guix/scripts/import.scm (guix-import): Add second 'newline' call.
This commit is contained in:
parent
f78cfcd7d3
commit
7d9fd1d7b7
1 changed files with 3 additions and 1 deletions
|
@ -97,7 +97,9 @@ (define-command (guix-import . args)
|
|||
((? list? expressions)
|
||||
(for-each (lambda (expr)
|
||||
(print expr)
|
||||
(newline))
|
||||
;; Two newlines: one after the closing paren, and
|
||||
;; one to leave a blank line.
|
||||
(newline) (newline))
|
||||
expressions))
|
||||
(x
|
||||
(leave (G_ "'~a' import failed~%") importer))))
|
||||
|
|
Loading…
Reference in a new issue