mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 02:59:17 -05:00
tests: Fix incorrect use of 'file-append'.
Fixes a regression introduced in fbc7b1f125
.
* gnu/tests/install.scm (run-install)[install]: Don't use 'file-append'
with a string as its first argument; use a gexp with 'string-append' instead.
Use a gexp instead of a list for "-cdrom IMG".
This commit is contained in:
parent
cd1ad27e6c
commit
4e39604111
1 changed files with 4 additions and 4 deletions
|
@ -238,11 +238,11 @@ (define marionette
|
|||
"-m" "800"
|
||||
#$@(cond
|
||||
((string=? "ext4" installation-disk-image-file-system-type)
|
||||
`("-drive"
|
||||
,(file-append "file=" image
|
||||
",if=virtio,readonly")))
|
||||
#~("-drive"
|
||||
,(string-append "file=" #$image
|
||||
",if=virtio,readonly")))
|
||||
((string=? "iso9660" installation-disk-image-file-system-type)
|
||||
`("-cdrom" ,image))
|
||||
#~("-cdrom" #$image))
|
||||
(else
|
||||
(error
|
||||
"unsupported installation-disk-image-file-system-type:"
|
||||
|
|
Loading…
Reference in a new issue