From 4924323aff55057331b1145beb83557e5576893f Mon Sep 17 00:00:00 2001 From: lolilolicon Date: Wed, 7 Sep 2016 23:16:24 +0800 Subject: [PATCH] show: display permissions too Fixes #11 --- cmd/fdroidcl/show.go | 3 +++ 1 file changed, 3 insertions(+) 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, ", ")) + } } }