[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: vm: Remove redundant conditional in system-disk-image.
From: |
Christopher Baines |
Subject: |
01/01: vm: Remove redundant conditional in system-disk-image. |
Date: |
Mon, 4 Sep 2017 17:30:22 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit 4138e782dcfea675ebc2347cbd4ea9abeb9dff36
Author: Christopher Baines <address@hidden>
Date: Sun Sep 3 10:56:25 2017 +0100
vm: Remove redundant conditional in system-disk-image.
* gnu/system/vm.scm (system-disk-image): Remove redundant conditional for
#:file-system-type when calling qemu-image.
---
gnu/system/vm.scm | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm
index 4494af0..b3da118 100644
--- a/gnu/system/vm.scm
+++ b/gnu/system/vm.scm
@@ -403,10 +403,7 @@ to USB sticks meant to be read-only."
(operating-system-bootloader os))
#:disk-image-size disk-image-size
#:disk-image-format "raw"
- #:file-system-type (if (string=? "iso9660"
- file-system-type)
- "ext4"
- file-system-type)
+ #:file-system-type file-system-type
#:file-system-label root-label
#:copy-inputs? #t
#:register-closures? #t