internal/rosa: optionally load built-ins from filesystem

This avoids having to rebuild cmd/mbf over and over.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
cat
2026-08-25 14:55:17 +09:00
parent 1c3761bb53
commit 18ba73c957
4 changed files with 65 additions and 30 deletions
+28
View File
@@ -0,0 +1,28 @@
//go:build penv
package rosa
import (
"io/fs"
"os"
)
// builtinAzalea is the backing directory of built-in azalea-based [Artifact]
// implementations.
var builtinAzalea = func() fs.FS {
const name = "ROSA_SOURCE"
pathname, ok := os.LookupEnv(name)
if !ok {
println(name + " not set")
os.Exit(1)
}
root, err := os.OpenRoot(pathname)
if err != nil {
println(err.Error())
os.Exit(1)
}
return root.FS()
}()