Prefer using './' for files in the PWD
parent
1fe4248b5a
commit
da96ba03d2
|
@ -1,2 +1,2 @@
|
||||||
channels.scm
|
./channels.scm
|
||||||
guix-installer.iso
|
./guix-installer.iso
|
|
@ -1,9 +1,9 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# Write out the current channels to be included with the image
|
# Write out the current channels to be included with the image
|
||||||
guix describe -f channels > channels.scm
|
guix describe -f channels > ./channels.scm
|
||||||
|
|
||||||
# Build the image and copy it to the current directory
|
# Build the image and copy it to the current directory
|
||||||
image=$(guix system image -t iso9660 installer.scm)
|
image=$(guix system image -t iso9660 ./installer.scm)
|
||||||
echo "Built image: $image"
|
echo "Built image: $image"
|
||||||
cp $image ./guix-installer.iso
|
cp $image ./guix-installer.iso
|
||||||
|
|
Loading…
Reference in New Issue