diff options
Diffstat (limited to 'src/infrastructure/guix/system.scm')
-rw-r--r-- | src/infrastructure/guix/system.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/infrastructure/guix/system.scm b/src/infrastructure/guix/system.scm index e58ffe9..f898033 100644 --- a/src/infrastructure/guix/system.scm +++ b/src/infrastructure/guix/system.scm @@ -50,14 +50,12 @@ (str working-dir "/" s)) (define (slurp s) - (string-trim-both - (call-with-input-file - s - textual-ports:get-string-all))) + (call-with-input-file + s + textual-ports:get-string-all)) (define (file s) - (string-append (slurp (path s)) - "\n")) + (slurp (path s))) (define (script name content) (package |