diff options
author | Sisiutl <sisiutl@egregore.fun> | 2024-11-19 18:43:20 +0100 |
---|---|---|
committer | Sisiutl <sisiutl@egregore.fun> | 2024-11-19 18:43:20 +0100 |
commit | 140526201b3175b7cf237aaf51523a01079edc89 (patch) | |
tree | 5561627100b5f4bf35f695e5df6ee2b194a6bd83 /gnu | |
parent | 00e71859610ebf60842ebc3280e45f9039a86ad9 (diff) |
booleans in the gexp
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/bootloader/grub-copy.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/bootloader/grub-copy.scm b/gnu/bootloader/grub-copy.scm index 6f230bb..2cc3914 100644 --- a/gnu/bootloader/grub-copy.scm +++ b/gnu/bootloader/grub-copy.scm @@ -71,7 +71,8 @@ (for-each (lambda (file) - (display (string-append "# NEEDED FILE: " file "\n") port)) + (if file + (display (string-append "# NEEDED FILE: " file "\n") port))) #$needed-files-gexps))))) (computed-file "grub.cfg" builder |