Don't remove fedora-thirdparty
This commit is contained in:
14
justfile
14
justfile
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user