Prefer using './' for files in the PWD

pull/5/head
anntnzrb 2021-06-22 08:12:29 -05:00
parent 1fe4248b5a
commit da96ba03d2
2 changed files with 4 additions and 4 deletions

4
.gitignore vendored
View File

@ -1,2 +1,2 @@
channels.scm ./channels.scm
guix-installer.iso ./guix-installer.iso

View File

@ -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