aboutsummaryrefslogtreecommitdiff
path: root/src/infrastructure/guix
diff options
context:
space:
mode:
Diffstat (limited to 'src/infrastructure/guix')
-rw-r--r--src/infrastructure/guix/system.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/infrastructure/guix/system.scm b/src/infrastructure/guix/system.scm
index d591c2b..ed34f75 100644
--- a/src/infrastructure/guix/system.scm
+++ b/src/infrastructure/guix/system.scm
@@ -56,7 +56,8 @@
textual-ports:get-string-all)))
(define (file s)
- (slurp (path s)))
+ (string-append (slurp (path s))
+ "\n"))
(define (script name content)
(package
@@ -75,8 +76,7 @@
(mkdir-p bin)
(call-with-output-file prog
(lambda (port)
- (display #$content port)
- (newline port)))
+ (display #$content port)))
(chmod prog #o755)))))
(home-page #f)
(synopsis #f)