From 3ef996da68e63550661fb6300cf5f8da64c20a94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 7 Jun 2024 14:09:13 +0200 Subject: [PATCH] ci: fixup attribute names --- build-images.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-images.sh b/build-images.sh index d110ff0..deeeda1 100755 --- a/build-images.sh +++ b/build-images.sh @@ -6,7 +6,7 @@ shopt -s lastpipe build_netboot_image() { declare -r tag=$1 channel=$2 arch=$3 tmp=$4 - img=$(nix build --print-out-paths --option accept-flake-config true -L ".#packages.${arch}.netboot-${channel//./}") + img=$(nix build --print-out-paths --option accept-flake-config true -L ".#packages.${arch}.netboot-nixos-${channel//./}") kernel=$(echo "$img"/*Image) kernelName=$(basename "$kernel") ln -s "$kernel" "$tmp/$kernelName-$arch" @@ -23,13 +23,13 @@ build_netboot_image() { build_kexec_installer() { declare -r channel=$1 arch=$2 tmp=$3 variant=$4 - out=$(nix build --print-out-paths --option accept-flake-config true -L ".#packages.${arch}.kexec-installer-${channel}${variant}") + out=$(nix build --print-out-paths --option accept-flake-config true -L ".#packages.${arch}.kexec-installer-nixos-${channel}${variant}") echo "$out/nixos-kexec-installer${variant}-$arch.tar.gz" } build_image_installer() { declare -r channel=$1 arch=$2 tmp=$3 - out=$(nix build --print-out-paths --option accept-flake-config true -L ".#packages.${arch}.image-installer-${channel//./}") + out=$(nix build --print-out-paths --option accept-flake-config true -L ".#packages.${arch}.image-installer-nixos-${channel//./}") echo "$out/iso/nixos-installer-${arch}.iso" }