diff options
author | Sisiutl <sisiutl@egregore.fun> | 2024-10-03 21:10:20 +0200 |
---|---|---|
committer | Sisiutl <sisiutl@egregore.fun> | 2024-10-03 21:10:20 +0200 |
commit | b35f780fe758fb27651d2b5ea16a4ffaca6b8f87 (patch) | |
tree | b96ab0fa3f0d4a9a2435d5769267e34809af06f9 | |
parent | 3a9e3bb3424a30cf4fdd764f01f0739101e9df97 (diff) |
typo
-rw-r--r-- | sigils/bootloader/grub.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sigils/bootloader/grub.scm b/sigils/bootloader/grub.scm index 01c9990..49b3f2d 100644 --- a/sigils/bootloader/grub.scm +++ b/sigils/bootloader/grub.scm @@ -50,7 +50,6 @@ #~(call-with-output-file #$output (lambda (port) (use-modules (ice-9 textual-ports) - (ice-9 string-fun) ;; delete-duplicates in needed gexps (srfi srfi-1)) @@ -65,7 +64,7 @@ (not (string-prefix? "search" (string-trim line)))) (string-split (call-with-input-file #$original-grub-cfg get-string-all) #\newline)) - "\n" port)) + "\n") port) (display "\n\n" port) |