From da96ba03d21efad46d3413c17ae7a38b6cbe78c8 Mon Sep 17 00:00:00 2001 From: anntnzrb Date: Tue, 22 Jun 2021 08:12:29 -0500 Subject: [PATCH] Prefer using './' for files in the PWD --- .gitignore | 4 ++-- build-iso.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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