Don't remove fedora-thirdparty

This commit is contained in:
2025-10-11 14:48:35 -04:00
parent 730b498ab2
commit 751a290b95
2 changed files with 11 additions and 4 deletions

View File

@@ -4,16 +4,24 @@ export BB_GENISO_SECURE_BOOT_URL := "https://gitlab.com/wunker-bunker/wunker-os/
export BB_GENISO_ENROLLMENT_PASSWORD := "wunker"
export BB_GENISO_VARIANT := "kinoite"
generate-iso recipe tag="latest":
generate-iso recipe:
#!/usr/bin/env nu
let name = open {{ recipe }} | get name
let recipe = open {{ recipe }}
| default [] alt-tags
| select name alt-tags
let tag = if ($recipe.alt-tags | is-empty) {
'latest'
} else {
$recipe.alt-tags | first
}
let name = $recipe.name
let image = $'(
$env.BB_REGISTRY
)/(
$env.BB_REGISTRY_NAMESPACE
)/(
$name
):{{ tag }}'
):($tag)'
(^bluebuild
generate-iso
--iso-name $'($name).iso'