diff --git a/cmd/fdroidcl/show.go b/cmd/fdroidcl/show.go index 8aaee15..4b473cf 100644 --- a/cmd/fdroidcl/show.go +++ b/cmd/fdroidcl/show.go @@ -140,5 +140,8 @@ func printAppDetailed(app fdroidcl.App) { if apk.ABIs != nil { p(" ABIs :", "%s", strings.Join(apk.ABIs, ", ")) } + if apk.Perms != nil { + p(" Perms :", "%s", strings.Join(apk.Perms, ", ")) + } } }