diff --git a/.gitignore b/.gitignore index 14f2c23..f3b41b5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -channels.scm -guix-installer.iso \ No newline at end of file +./channels.scm +./guix-installer.iso \ No newline at end of file diff --git a/build-iso.sh b/build-iso.sh index be34adc..6f72bd9 100755 --- a/build-iso.sh +++ b/build-iso.sh @@ -1,9 +1,9 @@ #!/bin/sh # 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 -image=$(guix system image -t iso9660 installer.scm) +image=$(guix system image -t iso9660 ./installer.scm) echo "Built image: $image" cp $image ./guix-installer.iso