diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-04-10 14:34:59 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-04-10 17:44:27 +0200 |
commit | 69447b6393d6f2c3528e3964c7c5f30f710aaa85 (patch) | |
tree | a00c81ee4ec6a4ecedc0588576b3a71efcf3c658 /guix | |
parent | 14b392a8ad25454cfd3d929d6ae359e369a76cbf (diff) |
self: Display a new line at the end of module compilation.
* guix/self.scm (compiled-modules)[build]: Add a 'newline' call at the
end.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/self.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/self.scm b/guix/self.scm index 76cbe2d6e3..dbe942cf23 100644 --- a/guix/self.scm +++ b/guix/self.scm @@ -543,7 +543,8 @@ list of file-name/file-like objects suitable as inputs to 'imported-files'." (mkdir #$output) (chdir #+module-tree) - (process-directory "." #$output)))) + (process-directory "." #$output) + (newline)))) (computed-file name build #:guile guile-for-build |