dotfiles-guix/scripts/build-installer
Freya Murphy 55de09d909
Some checks failed
installer / build (push) Failing after 1h2m18s
add guix installer workflow
2024-12-19 23:37:47 -05:00

8 lines
291 B
Bash
Executable file

#!/bin/sh
set -e -o pipefail
retry="$(dirname $0)/guix-retry"
repo="$(realpath "$(dirname $0)/..")"
command="\"$retry\" guix system -L \"$repo/modules\" image -t iso9660 \"$repo/systems/installer.scm\""
image=$(sh -c "$command")
date="$(date -Iseconds)"
cp $image "guix-installer-$date.iso"