aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd/mbf/info.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-09-05 05:44:33 +0900
committerOphestra <cat@gensokyo.uk>2026-09-05 06:25:41 +0900
commit5a32f8f9b2f2540495e79cb39ce4a6861553fe79 (patch)
tree47b25144af5edead669b615f3abcc51aedd81096 /cmd/mbf/info.go
parent871c701fdbce4a3d43e6e8edc436a2ae93322540 (diff)
internal/rosa: separate native tools from libraries
This removes most redundant runtime arguments and is useful for cross-compilation. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'cmd/mbf/info.go')
-rw-r--r--cmd/mbf/info.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/mbf/info.go b/cmd/mbf/info.go
index a4bc7c02..d8691f60 100644
--- a/cmd/mbf/info.go
+++ b/cmd/mbf/info.go
@@ -56,9 +56,9 @@ func commandInfo(
mustPrintln("website : " +
strings.TrimSuffix(meta.Website, "/"))
}
- if len(meta.Dependencies) > 0 {
+ if len(meta.Runtimes) > 0 {
mustPrint("depends on :")
- for _, d := range meta.Dependencies {
+ for _, d := range meta.Runtimes {
_meta, _ := rosa.MustLoad(d)
s := _meta.Name
if _meta.Version != rosa.Unversioned {