Install clangd
This commit is contained in:
20
justfile
20
justfile
@@ -1,3 +1,23 @@
|
||||
export BB_REGISTRY := "registry.gitlab.com"
|
||||
export BB_REGISTRY_NAMESPACE := "wunker-bunker/wunker-os"
|
||||
|
||||
generate-iso recipe tag="latest":
|
||||
#!/usr/bin/env nu
|
||||
let name = open {{ recipe }} | get name
|
||||
let image = $'(
|
||||
$env.BB_REGISTRY
|
||||
)/(
|
||||
$env.BB_REGISTRY_NAMESPACE
|
||||
)/(
|
||||
$name
|
||||
):{{ tag }}'
|
||||
(^bluebuild
|
||||
generate-iso
|
||||
--iso-name $'($name).iso'
|
||||
--output-dir .iso/
|
||||
--variant kinoite
|
||||
image $image)
|
||||
|
||||
generate-secureboot-key:
|
||||
openssl req -config ./openssl.cnf \
|
||||
-new -x509 -newkey rsa:2048 \
|
||||
|
||||
Reference in New Issue
Block a user