Skip to content

Commit

Permalink
Add resources info to verbose version output
Browse files Browse the repository at this point in the history
  • Loading branch information
andyone committed Sep 16, 2024
1 parent 0cb47e5 commit 61b1a47
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import (
"github.com/essentialkaos/ek/v13/support"
"github.com/essentialkaos/ek/v13/support/deps"
"github.com/essentialkaos/ek/v13/support/pkgs"
"github.com/essentialkaos/ek/v13/support/resources"
"github.com/essentialkaos/ek/v13/terminal"
"github.com/essentialkaos/ek/v13/terminal/tty"
"github.com/essentialkaos/ek/v13/usage"
Expand All @@ -44,7 +45,7 @@ import (
// Application info
const (
APP = "bibop"
VER = "8.1.1"
VER = "8.1.2"
DESC = "Utility for testing command-line tools"
)

Expand Down Expand Up @@ -141,6 +142,7 @@ func Run(gitRev string, gomod []byte) {
"initscripts", "libc-bin", "dpkg",
"gcc", "python2", "python3", "binutils",
)).
WithResources(resources.Collect()).
Print()
os.Exit(0)
case options.GetB(OPT_HELP) || len(args) == 0:
Expand Down

0 comments on commit 61b1a47

Please sign in to comment.