Show output architecture in readable info

This commit is contained in:
2025-10-19 16:24:05 +03:00
parent 8986e24334
commit 8a7519628f
2 changed files with 6 additions and 0 deletions
+3
View File
@@ -302,6 +302,9 @@ func (entry *BPMDatabaseEntry) CreateReadableInfo(rootDir string) string {
ret = append(ret, "URL: "+entry.Info.Url)
ret = append(ret, "License: "+entry.Info.License)
ret = append(ret, "Architecture: "+entry.Info.Arch)
if entry.Info.Type == "source" && entry.Info.OutputArch != "" && entry.Info.OutputArch != GetArch() {
ret = append(ret, "Output architecture: "+entry.Info.OutputArch)
}
ret = append(ret, "Type: "+entry.Info.Type)
appendArray("Dependencies", entry.Info.Depends, true)
if entry.Info.Type == "source" {